diff options
author | k_kapp@yahoo.com <k_kapp@yahoo.com> | 2017-05-21 00:54:41 +0200 |
---|---|---|
committer | k_kapp@yahoo.com <k_kapp@yahoo.com> | 2017-05-21 00:54:41 +0200 |
commit | f46fabbd81f56aea7e472e27db7e8c116a80b20b (patch) | |
tree | 6456d0e9bcc8132002df21f088e31e200d85a78e | |
parent | e52efca5accf06016ca4c1b180216e66db881ce2 (diff) | |
download | numpy-f46fabbd81f56aea7e472e27db7e8c116a80b20b.tar.gz |
DOC: Fix incorrect function signature in UFunc documentation.
See issue #9148
-rw-r--r-- | doc/source/user/c-info.ufunc-tutorial.rst | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/doc/source/user/c-info.ufunc-tutorial.rst b/doc/source/user/c-info.ufunc-tutorial.rst index 59e3dc6dc..addc38f45 100644 --- a/doc/source/user/c-info.ufunc-tutorial.rst +++ b/doc/source/user/c-info.ufunc-tutorial.rst @@ -1098,7 +1098,7 @@ automatically generates a ufunc from a C function with the correct signature. .. code-block:: c static void - double_add(char *args, npy_intp *dimensions, npy_intp *steps, + double_add(char **args, npy_intp *dimensions, npy_intp *steps, void *extra) { npy_intp i; |