diff options
author | Michael Seifert <michaelseifert04@yahoo.de> | 2017-03-27 06:04:02 +0200 |
---|---|---|
committer | Michael Seifert <michaelseifert04@yahoo.de> | 2017-03-27 06:08:34 +0200 |
commit | 62ed3b3dfaf40bbd448ef6c95f9abd43ca219f90 (patch) | |
tree | 5fd69570e5659bf74673709b17f3d30a1bb847b7 | |
parent | 8aea30035e4f03f6ab5cfdca202b967433b83d13 (diff) | |
download | numpy-62ed3b3dfaf40bbd448ef6c95f9abd43ca219f90.tar.gz |
DOC: Fixed wrong directive
[skip ci]
-rw-r--r-- | doc/source/user/c-info.how-to-extend.rst | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/doc/source/user/c-info.how-to-extend.rst b/doc/source/user/c-info.how-to-extend.rst index eeb01436d..b73dfbf54 100644 --- a/doc/source/user/c-info.how-to-extend.rst +++ b/doc/source/user/c-info.how-to-extend.rst @@ -575,7 +575,7 @@ is obtained as :c:func:`PyArray_GETPTR3` (E, i, j, k). As explained previously, C-style contiguous arrays and Fortran-style contiguous arrays have particular striding patterns. Two array flags -(:c:data:`NPY_C_CONTIGUOUS` and :cdata`NPY_F_CONTIGUOUS`) indicate +(:c:data:`NPY_C_CONTIGUOUS` and :c:data:`NPY_F_CONTIGUOUS`) indicate whether or not the striding pattern of a particular array matches the C-style contiguous or Fortran-style contiguous or neither. Whether or not the striding pattern matches a standard C or Fortran one can be |