aboutsummaryrefslogtreecommitdiffstats
path: root/docs
diff options
context:
space:
mode:
authorAlex Gaynor <alex.gaynor@gmail.com>2013-10-06 11:04:08 -0700
committerAlex Gaynor <alex.gaynor@gmail.com>2013-10-06 11:04:08 -0700
commitae5c907769365d1e7f89b1b7db99eb861d149b25 (patch)
treefd048b5c064caa2b87f4f9c4f7eeb099a921ee05 /docs
parentb643b806145be95023e82c75a5bcd4ecadaa3da2 (diff)
downloadcryptography-ae5c907769365d1e7f89b1b7db99eb861d149b25.tar.gz
cryptography-ae5c907769365d1e7f89b1b7db99eb861d149b25.tar.bz2
cryptography-ae5c907769365d1e7f89b1b7db99eb861d149b25.zip
Use the right lexer for these examples
Diffstat (limited to 'docs')
-rw-r--r--docs/contributing.rst8
1 files changed, 4 insertions, 4 deletions
diff --git a/docs/contributing.rst b/docs/contributing.rst
index 8f6a178e..1f4c1ca9 100644
--- a/docs/contributing.rst
+++ b/docs/contributing.rst
@@ -81,7 +81,7 @@ development dependencies. These are listed in ``dev-requirements.txt`` and they
can be installed in a `virtualenv`_ using `pip`_. Once you've installed the
dependencies, install ``cryptography`` in ``editable`` mode. For example:
-.. code-block:: sh
+.. code-block:: console
# Create a virtualenv and activate it
$ pip install --requirement dev-requirements.txt
@@ -96,7 +96,7 @@ Running Tests
designed to be run using `pytest`_. `pytest`_ will discover the tests
automatically, so all you have to do is:
-.. code-block:: sh
+.. code-block:: console
$ py.test
...
@@ -108,7 +108,7 @@ You can also verify that the tests pass on other supported Python interpreters.
For this we use `tox`_, which will automatically create a `virtualenv`_ for
each supported Python version and run the tests. For example:
-.. code-block:: sh
+.. code-block:: console
$ tox
...
@@ -131,7 +131,7 @@ written in `reStructured Text`_ and rendered using `Sphinx`_.
Use `tox`_ to build the documentation. For example:
-.. code-block:: sh
+.. code-block:: console
$ tox -e docs
...