summaryrefslogtreecommitdiff
path: root/docs/examples/first_app.rst
diff options
context:
space:
mode:
authorTodd Leonhardt <todd.leonhardt@gmail.com>2020-01-26 17:30:41 -0500
committerGitHub <noreply@github.com>2020-01-26 17:30:41 -0500
commit3d19fc9d525929904e64c8c31ba914bfd8c868a4 (patch)
treeacab882c27707818b644d1d5c778436d9131c2c0 /docs/examples/first_app.rst
parent91ab799f293f0789bbb2759aaabc13c00da36b03 (diff)
parent8e33bed3f57c7667e132148af76fe646d837e232 (diff)
downloadcmd2-git-3d19fc9d525929904e64c8c31ba914bfd8c868a4.tar.gz
Merge pull request #859 from python-cmd2/doc_links
Fixed broken links in Sphinx docs
Diffstat (limited to 'docs/examples/first_app.rst')
-rw-r--r--docs/examples/first_app.rst4
1 files changed, 2 insertions, 2 deletions
diff --git a/docs/examples/first_app.rst b/docs/examples/first_app.rst
index ef8e97dc..19d573b4 100644
--- a/docs/examples/first_app.rst
+++ b/docs/examples/first_app.rst
@@ -284,14 +284,14 @@ Users can access command history using two methods:
- the `readline <https://docs.python.org/3/library/readline.html>`_ library
which provides a python interface to the `GNU readline library
- <https://tiswww.case.edu/php/chet/readline/rltop.html>`_
+ <https://en.wikipedia.org/wiki/GNU_Readline>`_
- the ``history`` command which is built-in to ``cmd2``
From the prompt in a ``cmd2``-based application, you can press ``Control-p`` to
move to the previously entered command, and ``Control-n`` to move to the next
command. You can also search through the command history using ``Control-r``.
The `GNU Readline User Manual
-<https://tiswww.case.edu/php/chet/readline/rluserman.html>`_ has all the
+<http://man7.org/linux/man-pages/man3/readline.3.html>`_ has all the
details, including all the available commands, and instructions for customizing
the key bindings.