diff options
author | Rémi Verschelde <rverschelde@gmail.com> | 2021-10-05 14:45:03 +0200 |
---|---|---|
committer | Rémi Verschelde <rverschelde@gmail.com> | 2021-10-05 19:13:24 +0200 |
commit | e87f3dd4d0601c569c4379c324a9b2d016a6fda9 (patch) | |
tree | cf413e7eaa0ccfd8d449fc8644247ec29f089cc0 /doc/tools | |
parent | 788b3aa27ac01263b2e70190ace6551504e0c81e (diff) |
makerst: Add substitution for static qualifier
Diffstat (limited to 'doc/tools')
-rwxr-xr-x | doc/tools/makerst.py | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/doc/tools/makerst.py b/doc/tools/makerst.py index a23324fd24..acf04344c6 100755 --- a/doc/tools/makerst.py +++ b/doc/tools/makerst.py @@ -1102,6 +1102,7 @@ def make_footer(): # type: () -> str ".. |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.)`\n" ".. |constructor| replace:: :abbr:`constructor (This method is used to construct a type.)`\n" + ".. |static| replace:: :abbr:`static (This method doesn't need an instance to be called, so it can be called directly using the class name.)`\n" ".. |operator| replace:: :abbr:`operator (This method describes a valid operator to use with this type as left-hand operand.)`\n" ) # fmt: on |