diff options
Diffstat (limited to 'numpy/core/src/arraymethods.c')
-rw-r--r-- | numpy/core/src/arraymethods.c | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/numpy/core/src/arraymethods.c b/numpy/core/src/arraymethods.c index 3427ebd0b..09d785ae2 100644 --- a/numpy/core/src/arraymethods.c +++ b/numpy/core/src/arraymethods.c @@ -597,11 +597,11 @@ array_getarray(PyArrayObject *self, PyObject *args) } } -static char doc_copy[] = "m.copy(|fortran). Return a copy of the array.\n"\ - "If fortran is false then the result is contiguous (default). \n"\ - "If fortran is true then the result has fortran data order. \n"\ - "If fortran is None then the result has fortran data order only if m\n" - " is already in fortran order."; +static char doc_copy[] = "m.copy(|order). Return a copy of the array.\n"\ + "If order is 'C' (False) then the result is contiguous (default). \n"\ + "If order is 'Fortran' (True) then the result has fortran order. \n"\ + "If order is 'Any' (None) then the result has fortran order \n"\ + "only if m is already in fortran order."; static PyObject * array_copy(PyArrayObject *self, PyObject *args) |