From 3170ebc0e22d0185d6c0cdeace814625ed279ee9 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?R=C3=A9mi=20Verschelde?= Date: Tue, 15 Sep 2020 10:47:35 +0200 Subject: [PATCH] makerst: Add missing newline at EOF (cherry picked from commit d435537f7e63b35c9502b87b7146c846de48b90b) --- doc/tools/makerst.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/doc/tools/makerst.py b/doc/tools/makerst.py index db72a5ff7da..0debd68800d 100755 --- a/doc/tools/makerst.py +++ b/doc/tools/makerst.py @@ -1007,7 +1007,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