summaryrefslogtreecommitdiff
path: root/docs/features/multiline_commands.rst
diff options
context:
space:
mode:
authorkotfu <kotfu@kotfu.net>2020-02-10 16:06:29 -0700
committerkotfu <kotfu@kotfu.net>2020-02-10 16:06:29 -0700
commit9c6f1304816707e38c74926c93f62e48836b95c9 (patch)
tree07421a95b26ab2f0b76109d0fd3d3d2b52fbeef0 /docs/features/multiline_commands.rst
parentf4c745573e4d777d53e1bcfac743c3b437904034 (diff)
parent53a5cef6d56418528e969f55855906f7f602a7b1 (diff)
downloadcmd2-git-9c6f1304816707e38c74926c93f62e48836b95c9.tar.gz
Merge branch 'api_docs' of https://github.com/python-cmd2/cmd2 into api_docs
Diffstat (limited to 'docs/features/multiline_commands.rst')
-rw-r--r--docs/features/multiline_commands.rst4
1 files changed, 2 insertions, 2 deletions
diff --git a/docs/features/multiline_commands.rst b/docs/features/multiline_commands.rst
index 96063867..6e0a4539 100644
--- a/docs/features/multiline_commands.rst
+++ b/docs/features/multiline_commands.rst
@@ -17,9 +17,9 @@ Continuation prompt
When a user types a :ref:`Multiline Command
<features/multiline_commands:Multiline Commands>` it may span more than one
line of input. The prompt for the first line of input is specified by the
-``cmd2.Cmd.prompt`` instance attribute - see
+:attr:`cmd2.Cmd.prompt` instance attribute - see
:ref:`features/prompt:Customizing the Prompt`. The prompt for subsequent lines
-of input is defined by the ``cmd2.Cmd.continuation_prompt`` attribute.
+of input is defined by the :attr:`cmd2.Cmd.continuation_prompt` attribute.
Use cases
---------