summaryrefslogtreecommitdiff
path: root/doc
diff options
context:
space:
mode:
authorRĂ©mi Verschelde <rverschelde@gmail.com>2020-09-15 15:18:50 +0200
committerGitHub <noreply@github.com>2020-09-15 15:18:50 +0200
commit4450764479c52722f3fc9ea733cc2d5866716b91 (patch)
tree13010f02635922178ed0af720895d6cc0aa6b3ff /doc
parentdd1c30d807c23483e06bfdac2831d125b5ecc178 (diff)
parentd435537f7e63b35c9502b87b7146c846de48b90b (diff)
Merge pull request #42086 from akien-mga/makerst-newline-eof
makerst: Add missing newline at EOF
Diffstat (limited to 'doc')
-rwxr-xr-xdoc/tools/makerst.py2
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