summaryrefslogtreecommitdiff
path: root/numpy/core/src
diff options
context:
space:
mode:
authorUnknown <kunda@scribus.net>2017-12-12 19:08:43 -0500
committerUnknown <kunda@scribus.net>2017-12-12 19:09:07 -0500
commitde100beb4b53833f817d4ba9c6d940e4cff96d43 (patch)
treeeba76bff8ae029b4fb805bd6cd4bff4337922f1d /numpy/core/src
parent356b481bcf8783a4ecca6aaa7d7712e347c16101 (diff)
downloadnumpy-de100beb4b53833f817d4ba9c6d940e4cff96d43.tar.gz
DOC: fix minor typos
Diffstat (limited to 'numpy/core/src')
-rw-r--r--numpy/core/src/multiarray/datetime.c2
-rw-r--r--numpy/core/src/multiarray/flagsobject.c2
-rw-r--r--numpy/core/src/multiarray/mapping.c2
-rw-r--r--numpy/core/src/multiarray/numpyos.c2
-rw-r--r--numpy/core/src/umath/reduction.h2
5 files changed, 5 insertions, 5 deletions
diff --git a/numpy/core/src/multiarray/datetime.c b/numpy/core/src/multiarray/datetime.c
index 93babe8bd..18b549cf8 100644
--- a/numpy/core/src/multiarray/datetime.c
+++ b/numpy/core/src/multiarray/datetime.c
@@ -1078,7 +1078,7 @@ get_datetime_units_factor(NPY_DATETIMEUNIT bigbase, NPY_DATETIMEUNIT littlebase)
factor *= _datetime_factors[unit];
/*
* Detect overflow by disallowing the top 16 bits to be 1.
- * That alows a margin of error much bigger than any of
+ * That allows a margin of error much bigger than any of
* the datetime factors.
*/
if (factor&0xff00000000000000ULL) {
diff --git a/numpy/core/src/multiarray/flagsobject.c b/numpy/core/src/multiarray/flagsobject.c
index af4a17def..d3dcc934f 100644
--- a/numpy/core/src/multiarray/flagsobject.c
+++ b/numpy/core/src/multiarray/flagsobject.c
@@ -88,7 +88,7 @@ PyArray_UpdateFlags(PyArrayObject *ret, int flagmask)
/*
* Check whether the given array is stored contiguously
- * in memory. And update the passed in ap flags apropriately.
+ * in memory. And update the passed in ap flags appropriately.
*
* The traditional rule is that for an array to be flagged as C contiguous,
* the following must hold:
diff --git a/numpy/core/src/multiarray/mapping.c b/numpy/core/src/multiarray/mapping.c
index 18fa7b986..e0589f1c8 100644
--- a/numpy/core/src/multiarray/mapping.c
+++ b/numpy/core/src/multiarray/mapping.c
@@ -206,7 +206,7 @@ unpack_scalar(PyObject *index, PyObject **result, npy_intp result_n)
* to. The references written are new.
* @param result_n The length of the result buffer
*
- * @returns The number of items in `result`, or -1 if an error occured.
+ * @returns The number of items in `result`, or -1 if an error occurred.
* The entries in `result` at and beyond this index should be
* assumed to contain garbage, even if they were initialized
* to NULL, so are not safe to Py_XDECREF. Use multi_DECREF to
diff --git a/numpy/core/src/multiarray/numpyos.c b/numpy/core/src/multiarray/numpyos.c
index e6f414786..52dcbf3c8 100644
--- a/numpy/core/src/multiarray/numpyos.c
+++ b/numpy/core/src/multiarray/numpyos.c
@@ -17,7 +17,7 @@
#include <stdlib.h>
#ifdef HAVE_XLOCALE_H
/*
- * the defines from xlocale.h are included in locale.h on some sytems;
+ * the defines from xlocale.h are included in locale.h on some systems;
* see gh-8367
*/
#include <xlocale.h>
diff --git a/numpy/core/src/umath/reduction.h b/numpy/core/src/umath/reduction.h
index 7a55c5df5..f7812768c 100644
--- a/numpy/core/src/umath/reduction.h
+++ b/numpy/core/src/umath/reduction.h
@@ -25,7 +25,7 @@ typedef int (PyArray_AssignReduceIdentityFunc)(PyArrayObject *result,
* the loop, such as when the iternext() function never calls
* a function which could raise a Python exception.
*
- * Ths skip_first_count parameter indicates how many elements need to be
+ * The skip_first_count parameter indicates how many elements need to be
* skipped based on NpyIter_IsFirstVisit checks. This can only be positive
* when the 'assign_identity' parameter was NULL when calling
* PyArray_ReduceWrapper.