From e7f23a931665f67d407a50b2aeed54a72852fec3 Mon Sep 17 00:00:00 2001 From: kuyan Date: Mon, 14 Apr 2014 13:28:59 -0700 Subject: [PATCH] Revised code-block types --- docs/intro/documentation.rst | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/docs/intro/documentation.rst b/docs/intro/documentation.rst index bab0a9f..dd5053f 100644 --- a/docs/intro/documentation.rst +++ b/docs/intro/documentation.rst @@ -28,13 +28,13 @@ It allows you to quickly retrieve and search for documentation from your shell. For example, if you needed a quick refresher on the :mod:`time` module, pulling up documentation would be as simple as - .. code-block:: bash + .. code-block:: console $ pydoc time The above command is essentially equivalent to opening the Python REPL and running - .. code-block:: python + .. code-block:: pycon >>> help(time)