summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJoon Ro <joon.ro@outlook.com>2016-05-30 11:59:36 -0400
committerStefan Behnel <stefan_ml@behnel.de>2016-07-15 08:16:16 +0200
commit02d8bcc63352ebfdefcf2125c946615489d6cfa4 (patch)
tree30a240b7ed1b1a56b8419f350738d250e352522d
parentd1a8e7d3cfac9a573453b98dcee3c46e0cf400b1 (diff)
downloadcython-02d8bcc63352ebfdefcf2125c946615489d6cfa4.tar.gz
Fix a typo in a comment
-rw-r--r--docs/src/userguide/numpy_tutorial.rst2
1 files changed, 1 insertions, 1 deletions
diff --git a/docs/src/userguide/numpy_tutorial.rst b/docs/src/userguide/numpy_tutorial.rst
index d493a7bd7..b03094636 100644
--- a/docs/src/userguide/numpy_tutorial.rst
+++ b/docs/src/userguide/numpy_tutorial.rst
@@ -378,7 +378,7 @@ The array lookups are still slowed down by two factors:
...
cimport cython
- @cython.boundscheck(False) # turn of bounds-checking for entire function
+ @cython.boundscheck(False) # turn off bounds-checking for entire function
def naive_convolve(np.ndarray[DTYPE_t, ndim=2] f, np.ndarray[DTYPE_t, ndim=2] g):
...