summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorKevin Van Brunt <kmvanbrunt@gmail.com>2021-06-10 15:50:44 -0400
committerKevin Van Brunt <kmvanbrunt@gmail.com>2021-06-14 11:28:25 -0400
commit1a47a4bd5ef5b9a647a9adf4ee1c20e2bcc007dd (patch)
tree0e7cb65f8a37e95537e2c1a18f19c53c3aac01de
parent70abc055a1b6dfc848e7ab67faa7157d5f509ec4 (diff)
downloadcmd2-git-1a47a4bd5ef5b9a647a9adf4ee1c20e2bcc007dd.tar.gz
Fixed spelling in doc
-rw-r--r--docs/features/history.rst2
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`.