diff options
author | Travis Oliphant <oliphant@enthought.com> | 2006-09-17 06:34:16 +0000 |
---|---|---|
committer | Travis Oliphant <oliphant@enthought.com> | 2006-09-17 06:34:16 +0000 |
commit | 292d5d9446588fc2c9493a7640d4fd9a07bbf195 (patch) | |
tree | b9a849390bbb6b76cb547eb44e80d38bb21af89c | |
parent | 562be02b6f5c3715ddb37b0ee9d4d7a6559bcef4 (diff) | |
download | numpy-292d5d9446588fc2c9493a7640d4fd9a07bbf195.tar.gz |
Fix typo.
-rw-r--r-- | numpy/core/src/arrayobject.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/numpy/core/src/arrayobject.c b/numpy/core/src/arrayobject.c index fb2eb3a8e..ebd122501 100644 --- a/numpy/core/src/arrayobject.c +++ b/numpy/core/src/arrayobject.c @@ -7015,7 +7015,7 @@ _array_find_type(PyObject *op, PyArray_Descr *minitype, int max) Py_DECREF(chktype); Py_DECREF(minitype); /* VOID Arrays should not occur by "default" - unless intput was already a VOID */ + unless input was already a VOID */ if (outtype->type_num == PyArray_VOID && \ minitype->type_num != PyArray_VOID) { Py_DECREF(outtype); |