summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorPaul van Mulbregt <pvanmulbregt@users.noreply.github.com>2018-12-16 17:46:46 -0500
committerPaul van Mulbregt <pvanmulbregt@users.noreply.github.com>2018-12-16 17:46:46 -0500
commitfca6e723420046bb3786ed0c1d59e522f4cffd10 (patch)
tree14482311e73d2f85e85d38deca158222640daff4
parentdbcdc220a53cd2e2a80aa26337f0575834a76f64 (diff)
downloadcython-fca6e723420046bb3786ed0c1d59e522f4cffd10.tar.gz
DOC: Fixed name of .so file in userguide's numpy_tutorial.
"convolve_cy.so" -> "compute_cy.so" to match imports used in this tutorial.
-rw-r--r--docs/src/userguide/numpy_tutorial.rst4
1 files changed, 2 insertions, 2 deletions
diff --git a/docs/src/userguide/numpy_tutorial.rst b/docs/src/userguide/numpy_tutorial.rst
index df1863d16..3d1cd5a74 100644
--- a/docs/src/userguide/numpy_tutorial.rst
+++ b/docs/src/userguide/numpy_tutorial.rst
@@ -161,8 +161,8 @@ Cython version -- Cython uses ``.pyx`` as its file suffix (but it can also compi
.. literalinclude:: ../../examples/userguide/numpy_tutorial/compute_py.py
-This should be compiled to produce :file:`convolve_cy.so` (for Linux systems,
-on Windows systems, this will be a ``.pyd`` file). We
+This should be compiled to produce :file:`compute_cy.so` for Linux systems
+(on Windows systems, this will be a ``.pyd`` file). We
run a Python session to test both the Python version (imported from
``.py``-file) and the compiled Cython module.