diff options
Diffstat (limited to 'docs/features/history.rst')
-rw-r--r-- | docs/features/history.rst | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/docs/features/history.rst b/docs/features/history.rst index 22e205b4..056e02a0 100644 --- a/docs/features/history.rst +++ b/docs/features/history.rst @@ -8,7 +8,7 @@ The ``cmd`` module from the Python standard library includes ``readline`` history. :class:`cmd2.Cmd` offers the same ``readline`` capabilities, but also maintains -it's own data structures for the history of all commands entered by the user. +its own data structures for the history of all commands entered by the user. When the class is initialized, it creates an instance of the :class:`cmd2.history.History` class (which is a subclass of ``list``) as :data:`cmd2.Cmd.history`. |