diff options
author | Julian Taylor <juliantaylor108@gmail.com> | 2016-09-03 23:13:51 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2016-09-03 23:13:51 +0200 |
commit | 93b45bf42f465b8901921fb1b4a0efb36535de71 (patch) | |
tree | cdfe218a62e9231b174a98cfe47154ad608e0d2b /doc/source | |
parent | d50cff555d54c40d1532f07684641420ac5fd446 (diff) | |
parent | d31e68491dd94ce40f8cdfd017f6f5d85cdf6cf0 (diff) | |
download | numpy-93b45bf42f465b8901921fb1b4a0efb36535de71.tar.gz |
Merge pull request #8009 from MSeifert04/typo_fix_c_ufunc
DOC: Fixed three typos in the c-info.ufunc-tutorial
Diffstat (limited to 'doc/source')
-rw-r--r-- | doc/source/user/c-info.ufunc-tutorial.rst | 6 |
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 |