From: Bryan Bishop Date: Sun, 8 Sep 2013 16:11:45 +0000 (-0500) Subject: fix grammar/typo in build docs X-Git-Tag: 0.20b1~330^2 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=4d12f36b88cdbd2b0b919b5a25b5a7679baa98a4;p=platform%2Fupstream%2Fpython-cython.git fix grammar/typo in build docs There was a word missing. --- diff --git a/docs/src/quickstart/build.rst b/docs/src/quickstart/build.rst index b60848e..5229a12 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.