summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorabhilash42 <64172584+abhilash42@users.noreply.github.com>2020-05-19 01:47:08 +0530
committerGitHub <noreply@github.com>2020-05-19 01:47:08 +0530
commitccfe54db8b187a2683055fb98aa6a8119fc7f0b6 (patch)
treec21006e9d0fe5c5c6a19677eeab0d06101668cc0
parent637ecfeed67b084fcdbfabd938ae23dbe01276b3 (diff)
downloadnumpy-ccfe54db8b187a2683055fb98aa6a8119fc7f0b6.tar.gz
Update numpy/core/_add_newdocs.py
Co-authored-by: Ross Barnowski <rossbar@berkeley.edu>
-rw-r--r--numpy/core/_add_newdocs.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/numpy/core/_add_newdocs.py b/numpy/core/_add_newdocs.py
index 6562cb6dc..ae8bc965e 100644
--- a/numpy/core/_add_newdocs.py
+++ b/numpy/core/_add_newdocs.py
@@ -3946,7 +3946,7 @@ add_newdoc('numpy.core.multiarray', 'ndarray', ('tobytes', """
Parameters
----------
order : {'C', 'F', 'A', 'K'}, optional
- Controls the memory layout of the copy. 'C' means C-order,
+ Controls the memory layout of the bytes object. 'C' means C-order,
'F' means F-order, 'A' means 'F' if `a` is Fortran contiguous,
'C' otherwise. 'K' means match the layout of `a` as closely
as possible. Default is 'C'.