summaryrefslogtreecommitdiff
path: root/numpy/core/src
diff options
context:
space:
mode:
authorluz.paz <luzpaz@users.noreply.github.com>2018-02-27 03:01:24 -0500
committerluz.paz <luzpaz@users.noreply.github.com>2018-02-27 03:01:47 -0500
commitefc0e6438ac18175c9d9ae695374c945d4bd2211 (patch)
treed1e467c7730eae38f208b6589b7c2c39b7763743 /numpy/core/src
parent6462068ee40344ebe9a60b3ddcad0e9590d5a260 (diff)
downloadnumpy-efc0e6438ac18175c9d9ae695374c945d4bd2211.tar.gz
DOC/MAINT: More misc. typos
Found via `codespell` and `grep`
Diffstat (limited to 'numpy/core/src')
-rw-r--r--numpy/core/src/umath/override.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/numpy/core/src/umath/override.c b/numpy/core/src/umath/override.c
index 7e787b8fe..0aef093b0 100644
--- a/numpy/core/src/umath/override.c
+++ b/numpy/core/src/umath/override.c
@@ -210,7 +210,7 @@ normalize_reduceat_args(PyUFuncObject *ufunc, PyObject *args,
PyObject **normal_args, PyObject **normal_kwds)
{
/*
- * ufunc.reduceat(a, indicies[, axis, dtype, out])
+ * ufunc.reduceat(a, indices[, axis, dtype, out])
* the number of arguments has been checked in PyUFunc_GenericReduction.
*/
npy_intp i;
@@ -224,7 +224,7 @@ normalize_reduceat_args(PyUFuncObject *ufunc, PyObject *args,
"arguments but %"NPY_INTP_FMT" were given", nargs);
return -1;
}
- /* a and indicies */
+ /* a and indices */
*normal_args = PyTuple_GetSlice(args, 0, 2);
if (*normal_args == NULL) {
return -1;