summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorkotfu <kotfu@kotfu.net>2020-02-06 16:56:28 -0700
committerkotfu <kotfu@kotfu.net>2020-02-06 16:56:28 -0700
commit4802e6a3ea7864109dced8de3d2032e3ff845adb (patch)
treea9c2744e9a0004a0c3383d59b885736cd151227d
parent6d11766972dc7db75861fa403cc0008868d1d2e4 (diff)
downloadcmd2-git-4802e6a3ea7864109dced8de3d2032e3ff845adb.tar.gz
Fix redundant declaration of cmd2.Cmd.__init__ method
-rw-r--r--docs/features/history.rst4
1 files changed, 1 insertions, 3 deletions
diff --git a/docs/features/history.rst b/docs/features/history.rst
index 54e18683..56c74ed7 100644
--- a/docs/features/history.rst
+++ b/docs/features/history.rst
@@ -11,9 +11,7 @@ For Developers
- reference the public code structures we use to store history
``cmd2`` adds the option of making this history persistent via optional
-arguments to ``cmd2.Cmd.__init__()``:
-
-.. automethod:: cmd2.Cmd.__init__
+arguments to :meth:`cmd2.Cmd.__init__`.
For Users