summaryrefslogtreecommitdiff
path: root/doc
diff options
context:
space:
mode:
authorMichael Seifert <michaelseifert04@yahoo.de>2016-09-03 23:01:39 +0200
committerMichael Seifert <michaelseifert04@yahoo.de>2016-09-03 23:01:39 +0200
commitd31e68491dd94ce40f8cdfd017f6f5d85cdf6cf0 (patch)
treecdfe218a62e9231b174a98cfe47154ad608e0d2b /doc
parentd50cff555d54c40d1532f07684641420ac5fd446 (diff)
downloadnumpy-d31e68491dd94ce40f8cdfd017f6f5d85cdf6cf0.tar.gz
DOC: Fixed three typos in the c-info.ufunc-tutorial [skip ci]
Diffstat (limited to 'doc')
-rw-r--r--doc/source/user/c-info.ufunc-tutorial.rst6
1 files changed, 3 insertions, 3 deletions
diff --git a/doc/source/user/c-info.ufunc-tutorial.rst b/doc/source/user/c-info.ufunc-tutorial.rst
index ab97846a8..f064fbcc9 100644
--- a/doc/source/user/c-info.ufunc-tutorial.rst
+++ b/doc/source/user/c-info.ufunc-tutorial.rst
@@ -70,7 +70,7 @@ Example Non-ufunc extension
.. index::
pair: ufunc; adding new
-For comparison and general edificaiton of the reader we provide
+For comparison and general edification of the reader we provide
a simple implementation of a C extension of logit that uses no
numpy.
@@ -278,7 +278,7 @@ the primary thing that must be changed to create your own ufunc.
* In this code we only define the ufunc for
* a single dtype. The computations that must
* be replaced to create a ufunc for
- * a different funciton are marked with BEGIN
+ * a different function are marked with BEGIN
* and END.
*
* Details explaining the Python-C API can be found under
@@ -480,7 +480,7 @@ the primary thing that must be changed to create your own ufunc.
* of these functions must be modified when you
* create your own ufunc. The computations that must
* be replaced to create a ufunc for
- * a different funciton are marked with BEGIN
+ * a different function are marked with BEGIN
* and END.
*
* Details explaining the Python-C API can be found under