summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorSebastian Berg <sebastianb@nvidia.com>2023-05-15 21:53:49 +0200
committerSebastian Berg <sebastianb@nvidia.com>2023-05-15 21:53:49 +0200
commited9b716c89bb6dd3194be1efbfc5fb49ab0214d8 (patch)
tree103db0548081a6cb0e6877a604e5afa1e882b83b
parent626d32fc47a9803e706168ea2d72d3584a4696bd (diff)
downloadnumpy-ed9b716c89bb6dd3194be1efbfc5fb49ab0214d8.tar.gz
MAINT: Fix typo in comment
-rw-r--r--numpy/core/src/multiarray/arrayobject.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/numpy/core/src/multiarray/arrayobject.h b/numpy/core/src/multiarray/arrayobject.h
index 55ec92463..a6b3a32bd 100644
--- a/numpy/core/src/multiarray/arrayobject.h
+++ b/numpy/core/src/multiarray/arrayobject.h
@@ -43,7 +43,7 @@ static const int NPY_ARRAY_WAS_PYTHON_COMPLEX = (1 << 28);
/*
* Mark that this was a huge int which was turned into an object array (or
* unsigned/non-default integer array), but then replaced by a temporary
- * array for further processing. This flag is only in the ufunc machinery
+ * array for further processing. This flag is only used in the ufunc machinery
* where it is tricky to cover correctly all type resolution paths.
*/
static const int NPY_ARRAY_WAS_INT_AND_REPLACED = (1 << 27);