summaryrefslogtreecommitdiff
path: root/doc/en/goodpractices.rst
diff options
context:
space:
mode:
authorAnthony Sottile <asottile@umich.edu>2018-07-04 15:16:34 -0700
committerAnthony Sottile <asottile@umich.edu>2018-07-04 15:16:34 -0700
commit50f030d2330280abc31824075660a9d5d0aaa808 (patch)
treeb10ddf155dc365c7f3b44241497538524fa82352 /doc/en/goodpractices.rst
parentb64c26674d10da13e957e5e101e1854d29938717 (diff)
downloadpytest-50f030d2330280abc31824075660a9d5d0aaa808.tar.gz
Correct code blocks in docs
Diffstat (limited to 'doc/en/goodpractices.rst')
-rw-r--r--doc/en/goodpractices.rst2
1 files changed, 1 insertions, 1 deletions
diff --git a/doc/en/goodpractices.rst b/doc/en/goodpractices.rst
index 2bbd9d0ae..d9c685299 100644
--- a/doc/en/goodpractices.rst
+++ b/doc/en/goodpractices.rst
@@ -187,7 +187,7 @@ You can then install your package in "editable" mode::
pip install -e .
which lets you change your source code (both tests and application) and rerun tests at will.
-This is similar to running `python setup.py develop` or `conda develop` in that it installs
+This is similar to running ``python setup.py develop`` or ``conda develop`` in that it installs
your package using a symlink to your development code.
Once you are done with your work and want to make sure that your actual