summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJulian Taylor <jtaylor.debian@googlemail.com>2013-10-03 20:12:43 +0200
committerCharles Harris <charlesr.harris@gmail.com>2013-10-05 11:55:37 -0600
commite8f9d6d983a05ed994f09a08fef09db7c972370e (patch)
tree348369737c62e2ca33df019aaf1fb63359e1bfcc
parent0cfa4ed4ee39aaa94e4059c6394a4ed75a8e3d6c (diff)
downloadnumpy-e8f9d6d983a05ed994f09a08fef09db7c972370e.tar.gz
DOC: fix signature of NpyIter_GetIterNext in capi doc
-rw-r--r--doc/source/reference/c-api.iterator.rst2
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 153792ac8..b26845434 100644
--- a/doc/source/reference/c-api.iterator.rst
+++ b/doc/source/reference/c-api.iterator.rst
@@ -204,7 +204,7 @@ is used to control the memory layout of the allocated result, typically
* Make a copy of the iternext function pointer and
* a few other variables the inner loop needs.
*/
- iternext = NpyIter_GetIterNext(iter);
+ iternext = NpyIter_GetIterNext(iter, NULL);
innerstride = NpyIter_GetInnerStrideArray(iter)[0];
itemsize = NpyIter_GetDescrArray(iter)[0]->elsize;
/*