summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorPaul van Mulbregt <pvanmulbregt@users.noreply.github.com>2018-12-16 17:46:46 -0500
committerStefan Behnel <stefan_ml@behnel.de>2019-01-02 14:58:49 +0100
commit90eb720b572707504761540af44ee9208f479f79 (patch)
treee096d47fa436273792ba0693b4c9a933d4feb272
parent006105ef930d55b99e96c857428838e699c3a1ec (diff)
downloadcython-90eb720b572707504761540af44ee9208f479f79.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.