diff options
author | Charles Harris <charlesr.harris@gmail.com> | 2021-09-13 12:31:06 -0600 |
---|---|---|
committer | GitHub <noreply@github.com> | 2021-09-13 12:31:06 -0600 |
commit | 4775b1172dd58909dd94f31eb353f34b7990a61f (patch) | |
tree | 42ca29e6612b9ca0ec2b61d111a987ac47275541 /doc/source/reference/c-api | |
parent | ce1678071a2622dfb3d8d3fe8cd47d6c400a6c59 (diff) | |
download | numpy-4775b1172dd58909dd94f31eb353f34b7990a61f.tar.gz |
Update doc/source/reference/c-api/array.rst
Co-authored-by: Melissa Weber Mendonça <melissawm@gmail.com>
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 c5c61a468..9006c9b31 100644 --- a/doc/source/reference/c-api/array.rst +++ b/doc/source/reference/c-api/array.rst @@ -727,7 +727,7 @@ From other objects .. c:function:: int PyArray_CopyObject(PyArrayObject* dest, PyObject* src) Assign an object ``src`` to a NumPy array ``dest`` according to - array-coercion rules. This is largely basically identical to + array-coercion rules. This is basically identical to :c:func:`PyArray_FromAny`, but assigns directly to the output array. Returns 0 on success and -1 on failures. |