diff options
author | Matti Picus <matti.picus@gmail.com> | 2020-10-05 09:03:58 +0300 |
---|---|---|
committer | GitHub <noreply@github.com> | 2020-10-05 09:03:58 +0300 |
commit | cf1306a842d7b1064270bd06951a485121e60816 (patch) | |
tree | 8de595ff1f4ad8b8e9e79f1fd63ec8891064d082 /doc/source/reference/c-api/iterator.rst | |
parent | 3f6bb2073418e0ea0d88398e1848e2aa3f1b53eb (diff) | |
parent | 37ff6fce0bfdb5df87aafcdd5f38e9ebc5ebe0e6 (diff) | |
download | numpy-cf1306a842d7b1064270bd06951a485121e60816.tar.gz |
Merge pull request #17445 from takanori-pskq/i13114-fix-refs-macro
DOC: Fix the 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, |