diff options
author | Julian Taylor <jtaylor.debian@googlemail.com> | 2013-10-03 20:12:43 +0200 |
---|---|---|
committer | Charles Harris <charlesr.harris@gmail.com> | 2013-10-05 11:55:37 -0600 |
commit | e8f9d6d983a05ed994f09a08fef09db7c972370e (patch) | |
tree | 348369737c62e2ca33df019aaf1fb63359e1bfcc | |
parent | 0cfa4ed4ee39aaa94e4059c6394a4ed75a8e3d6c (diff) | |
download | numpy-e8f9d6d983a05ed994f09a08fef09db7c972370e.tar.gz |
DOC: fix signature of NpyIter_GetIterNext in capi doc
-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 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; /* |