Skip to content

Commit

Permalink
Do not terminate SEE ALSO with a period (according to man man-pages)
Browse files Browse the repository at this point in the history
Signed-off-by: Viktor Söderqvist <[email protected]>
  • Loading branch information
zuiderkwast committed Sep 22, 2024
1 parent b6382a0 commit 84163dc
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion utils/preprocess-markdown.py
Original file line number Diff line number Diff line change
Expand Up @@ -124,7 +124,7 @@ def print_bottom(self):
print("# SEE ALSO", end="\n\n")
see_also = ", ".join(["**" + cmd.lower().replace(' ', '-') + "**(3valkey)"
for cmd in self.see_also_commands.keys()])
print(see_also + ".", end="\n\n")
print(see_also, end="\n\n")

def rewrite_heading(self, heading):
heading = heading.strip()
Expand Down

0 comments on commit 84163dc

Please sign in to comment.