Skip to content

Commit

Permalink
Ensure a newline at the end of registers description
Browse files Browse the repository at this point in the history
Without this, the `[cols=...]` line would show up in the rendered text
(at the start of section 4.10).
  • Loading branch information
rtwfroody committed Feb 29, 2024
1 parent a4c2e75 commit f527548
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion registers.py
Original file line number Diff line number Diff line change
Expand Up @@ -1017,7 +1017,7 @@ def write_adoc( fd, registers ):
fd.write("\n")

def write_adoc_index( fd, registers ):
fd.write(remove_indent(registers.description))
fd.write(remove_indent(registers.description) + "\n")

columns = [
("Address", "1"),
Expand Down

0 comments on commit f527548

Please sign in to comment.