diff options
author | Rémi Verschelde <rverschelde@gmail.com> | 2020-09-15 10:47:35 +0200 |
---|---|---|
committer | Rémi Verschelde <rverschelde@gmail.com> | 2020-09-15 10:47:35 +0200 |
commit | d435537f7e63b35c9502b87b7146c846de48b90b (patch) | |
tree | bfe95bd00eb112ec15e26262bbc457799854f3d2 | |
parent | 43725691b917a76151f74a82c4be016ce9838f8a (diff) |
makerst: Add missing newline at EOF
-rwxr-xr-x | doc/tools/makerst.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/doc/tools/makerst.py b/doc/tools/makerst.py index b594f652b3..ed147f31cd 100755 --- a/doc/tools/makerst.py +++ b/doc/tools/makerst.py @@ -1041,7 +1041,7 @@ def make_footer(): # type: () -> str return ( ".. |virtual| replace:: :abbr:`virtual (This method should typically be overridden by the user to have any effect.)`\n" ".. |const| replace:: :abbr:`const (This method has no side effects. It doesn't modify any of the instance's member variables.)`\n" - ".. |vararg| replace:: :abbr:`vararg (This method accepts any number of arguments after the ones described here.)`" + ".. |vararg| replace:: :abbr:`vararg (This method accepts any number of arguments after the ones described here.)`\n" ) # fmt: on |