summaryrefslogtreecommitdiff
path: root/doc/source/reference
diff options
context:
space:
mode:
authorluzpaz <kunda@scribus.net>2017-12-30 10:45:49 -0500
committerluzpaz <kunda@scribus.net>2017-12-30 10:45:49 -0500
commit923e16db075302d17d73bc5426d9cd3af02c8483 (patch)
treef32825e8c5fa8317184b64e0d3d70985c41ca584 /doc/source/reference
parent7bb2d5a8f0219aa5acb5fda05929f1a0745a1883 (diff)
downloadnumpy-923e16db075302d17d73bc5426d9cd3af02c8483.tar.gz
Documentation and misc. typos
Found via `codespell`
Diffstat (limited to 'doc/source/reference')
-rw-r--r--doc/source/reference/c-api.coremath.rst2
1 files changed, 1 insertions, 1 deletions
diff --git a/doc/source/reference/c-api.coremath.rst b/doc/source/reference/c-api.coremath.rst
index 9027a4e0d..d3f7fcf75 100644
--- a/doc/source/reference/c-api.coremath.rst
+++ b/doc/source/reference/c-api.coremath.rst
@@ -237,7 +237,7 @@ of floating point round-off error.
Like for other types, NumPy includes a typedef npy_half for the 16 bit
float. Unlike for most of the other types, you cannot use this as a
-normal type in C, since is is a typedef for npy_uint16. For example,
+normal type in C, since it is a typedef for npy_uint16. For example,
1.0 looks like 0x3c00 to C, and if you do an equality comparison
between the different signed zeros, you will get -0.0 != 0.0
(0x8000 != 0x0000), which is incorrect.