summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorBryan Bishop <kanzure@gmail.com>2013-09-08 11:11:45 -0500
committerBryan Bishop <kanzure@gmail.com>2013-09-08 11:11:45 -0500
commit8d1c6b5e95961d1376f0843e156a910f09a50adc (patch)
tree727556bcae03e73b6ea5776b95a15c25215d6c6d
parentac3e3a259064221e3044a9ae9f24543eec33923d (diff)
downloadcython-8d1c6b5e95961d1376f0843e156a910f09a50adc.tar.gz
fix grammar/typo in build docs
There was a word missing. --HG-- extra : transplant_source : %B2%3E%E6%8CF%00%89%0E%AF%3A%C2%40%1E%D9%A7%E7S%E67A
-rw-r--r--docs/src/quickstart/build.rst2
1 files changed, 1 insertions, 1 deletions
diff --git a/docs/src/quickstart/build.rst b/docs/src/quickstart/build.rst
index b60848ecc..5229a1228 100644
--- a/docs/src/quickstart/build.rst
+++ b/docs/src/quickstart/build.rst
@@ -13,7 +13,7 @@ There are several ways to build Cython code:
- Write a distutils ``setup.py``.
- Use ``pyximport``, importing Cython ``.pyx`` files as if they
- were ``.py`` files (using distutils to compile and build the background).
+ were ``.py`` files (using distutils to compile and build in the background).
- Run the ``cython`` command-line utility manually to produce the ``.c`` file
from the ``.pyx`` file, then manually compiling the ``.c`` file into a shared
object library or ``.dll`` suitable for import from Python.