summaryrefslogtreecommitdiff
path: root/doc/source/dev/development_environment.rst
diff options
context:
space:
mode:
authorPierre de Buyl <pdebuyl@pdebuyl.be>2016-09-05 22:24:34 +0200
committerPierre de Buyl <pdebuyl@pdebuyl.be>2016-09-06 11:20:19 +0200
commit773e3cad9a71cb9a7849d8e251fb8a99ab35d06b (patch)
tree793dab9410558a21622d6e6b948d0491997cc54c /doc/source/dev/development_environment.rst
parentadc155e12648256eea754d1d53e8322e3ac19549 (diff)
downloadnumpy-773e3cad9a71cb9a7849d8e251fb8a99ab35d06b.tar.gz
change all non-code instances of Numpy to NumPy
Instances remain for NumpyVersion and Numpy.rec.fromarrays that are references to code. Release notes were left unchanged. see issue #7986
Diffstat (limited to 'doc/source/dev/development_environment.rst')
-rw-r--r--doc/source/dev/development_environment.rst6
1 files changed, 3 insertions, 3 deletions
diff --git a/doc/source/dev/development_environment.rst b/doc/source/dev/development_environment.rst
index 41e874362..e6df9803c 100644
--- a/doc/source/dev/development_environment.rst
+++ b/doc/source/dev/development_environment.rst
@@ -11,7 +11,7 @@ Since NumPy contains parts written in C and Cython that need to be
compiled before use, make sure you have the necessary compilers and Python
development headers installed - see :ref:`building-from-source`.
-Having compiled code also means that importing Numpy from the development
+Having compiled code also means that importing NumPy from the development
sources needs some additional steps, which are explained below. For the rest
of this chapter we assume that you have set up your git repo as described in
:ref:`using-git`.
@@ -28,7 +28,7 @@ do one of::
$ python runtests.py --bench
$ python runtests.py -g -m full
-This builds Numpy first, so the first time it may take a few minutes. If
+This builds NumPy first, so the first time it may take a few minutes. If
you specify ``-n``, the tests are run against the version of NumPy (if
any) found on current PYTHONPATH.
@@ -169,7 +169,7 @@ repo, use one of::
Debugging
---------
-Another frequently asked question is "How do I debug C code inside Numpy?".
+Another frequently asked question is "How do I debug C code inside NumPy?".
The easiest way to do this is to first write a Python script that invokes the C
code whose execution you want to debug. For instance ``mytest.py``::