diff options
author | takanori-pskq <takanori17h@gmail.com> | 2020-10-05 12:37:23 +0900 |
---|---|---|
committer | takanori-pskq <takanori17h@gmail.com> | 2020-10-05 13:54:32 +0900 |
commit | 37ff6fce0bfdb5df87aafcdd5f38e9ebc5ebe0e6 (patch) | |
tree | 8097879fa7b6b30acc4c932596747a80ccabc5a7 /doc/source/reference/c-api/iterator.rst | |
parent | f16f01aa669756400dccf5b12ffc75faf2387638 (diff) | |
download | numpy-37ff6fce0bfdb5df87aafcdd5f38e9ebc5ebe0e6.tar.gz |
DOC: Fix some references for macros
Diffstat (limited to 'doc/source/reference/c-api/iterator.rst')
-rw-r--r-- | doc/source/reference/c-api/iterator.rst | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/doc/source/reference/c-api/iterator.rst b/doc/source/reference/c-api/iterator.rst index 7eac8c367..ae96bb3fb 100644 --- a/doc/source/reference/c-api/iterator.rst +++ b/doc/source/reference/c-api/iterator.rst @@ -1264,7 +1264,7 @@ functions provide that information. NPY_MAX_INTP is placed in the stride. Once the iterator is prepared for iteration (after a reset if - :c:data:`NPY_DELAY_BUFALLOC` was used), call this to get the strides + :c:data:`NPY_ITER_DELAY_BUFALLOC` was used), call this to get the strides which may be used to select a fast inner loop function. For example, if the stride is 0, that means the inner loop can always load its value into a variable once, then use the variable throughout the loop, |