diff options
author | Rohit Goswami <rog32@hi.is> | 2022-10-10 15:51:24 +0200 |
---|---|---|
committer | Rohit Goswami <rog32@hi.is> | 2022-10-10 15:51:24 +0200 |
commit | 72f573c9c71092ff3ed59f7818f1b178cb5c6deb (patch) | |
tree | 3368866d2c0b78663881a52baa5cd2339e0fbc83 /doc/source/reference/c-api | |
parent | c6f8fb2f390f5694501a2a955f232c57a042ce0e (diff) | |
download | numpy-72f573c9c71092ff3ed59f7818f1b178cb5c6deb.tar.gz |
DOC: Replace CObject with Capsule consistently
Diffstat (limited to 'doc/source/reference/c-api')
-rw-r--r-- | doc/source/reference/c-api/array.rst | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/doc/source/reference/c-api/array.rst b/doc/source/reference/c-api/array.rst index e4028b7b4..8ea78ae2e 100644 --- a/doc/source/reference/c-api/array.rst +++ b/doc/source/reference/c-api/array.rst @@ -152,7 +152,7 @@ and its sub-types). .. c:function:: int PyArray_FinalizeFunc(PyArrayObject* arr, PyObject* obj) - The function pointed to by the CObject + The function pointed to by the Capsule :obj:`~numpy.class.__array_finalize__`. The first argument is the newly created sub-type. The second argument (if not NULL) is the "parent" array (if the array was created using |