diff options
author | Eric Wieser <wieser.eric@gmail.com> | 2018-05-29 09:28:13 -0700 |
---|---|---|
committer | GitHub <noreply@github.com> | 2018-05-29 09:28:13 -0700 |
commit | 6246cf19fdda3ccca4338dcec2f3956294e30ce7 (patch) | |
tree | f56dbf9be81c725aa88ffed6f893910324912a32 /numpy | |
parent | 9e4403deb37d6dd5658a4a2cb1de14274a806e98 (diff) | |
parent | d7f4eef6544e811840b3d1354b2d38ed3ae5a967 (diff) | |
download | numpy-6246cf19fdda3ccca4338dcec2f3956294e30ce7.tar.gz |
Merge pull request #11177 from mhvk/gufunc-docs-improvement
DOC: improvement of the documentation for gufunc.
Diffstat (limited to 'numpy')
-rw-r--r-- | numpy/core/include/numpy/ufuncobject.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/numpy/core/include/numpy/ufuncobject.h b/numpy/core/include/numpy/ufuncobject.h index d0ac1fd7d..4b1b3d325 100644 --- a/numpy/core/include/numpy/ufuncobject.h +++ b/numpy/core/include/numpy/ufuncobject.h @@ -167,7 +167,7 @@ typedef struct _tagPyUFuncObject { int *core_dim_ixs; /* * positions of 1st core dimensions of each - * argument in core_dim_ixs + * argument in core_dim_ixs, equivalent to cumsum(core_num_dims) */ int *core_offsets; /* signature string for printing purpose */ |