diff options
author | RĂ©mi Verschelde <rverschelde@gmail.com> | 2020-09-15 15:18:50 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2020-09-15 15:18:50 +0200 |
commit | 4450764479c52722f3fc9ea733cc2d5866716b91 (patch) | |
tree | 13010f02635922178ed0af720895d6cc0aa6b3ff /doc | |
parent | dd1c30d807c23483e06bfdac2831d125b5ecc178 (diff) | |
parent | d435537f7e63b35c9502b87b7146c846de48b90b (diff) |
Merge pull request #42086 from akien-mga/makerst-newline-eof
makerst: Add missing newline at EOF
Diffstat (limited to 'doc')
-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 |