We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent be40449 commit 283e74cCopy full SHA for 283e74c
Doc/library/cmd.rst
@@ -99,9 +99,9 @@ When the user enters an empty line in response to the prompt, ``Cmd`` does
99
**not** ignore the input by default. Instead, it repeats the last non-empty
100
command entered.
101
102
-This behavior is implemented by :meth:`emptyline`. Subclasses that do not
+This behavior is implemented by :meth:`Cmd.emptyline`. Subclasses that do not
103
want empty input to repeat the previous command should override
104
-:meth:`emptyline` to do nothing::
+:meth:`Cmd.emptyline` to do nothing::
105
106
def emptyline(self):
107
pass
0 commit comments