makerst: Add substitution for static qualifier

This commit is contained in:
Rémi Verschelde 2021-10-05 14:45:03 +02:00
parent 788b3aa27a
commit e87f3dd4d0
No known key found for this signature in database
GPG key ID: C3336907360768E1

View file

@ -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