diff options
author | Travis Oliphant <teoliphant@gmail.com> | 2018-10-31 17:02:22 -0500 |
---|---|---|
committer | Travis Oliphant <teoliphant@gmail.com> | 2018-10-31 17:02:22 -0500 |
commit | 7f48bb921863b2d1a64f511f0d8f05a1590b2b2a (patch) | |
tree | 6082798c05ce802feef7460ee7b85309bfebd4f9 /numpy/core/numeric.py | |
parent | 3da7c73103d653a6e431924f6f4084224b8bb73b (diff) | |
download | numpy-7f48bb921863b2d1a64f511f0d8f05a1590b2b2a.tar.gz |
DOC: remove excess indentation in Note:
Diffstat (limited to 'numpy/core/numeric.py')
-rw-r--r-- | numpy/core/numeric.py | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/numpy/core/numeric.py b/numpy/core/numeric.py index bfe72ceb6..265c3636f 100644 --- a/numpy/core/numeric.py +++ b/numpy/core/numeric.py @@ -619,7 +619,7 @@ def ascontiguousarray(a, dtype=None): True Note: This function returns an array with at least one-dimension (1-d) - so it will not preserve 0-d arrays. + so it will not preserve 0-d arrays. """ return array(a, dtype, copy=False, order='C', ndmin=1) @@ -659,7 +659,7 @@ def asfortranarray(a, dtype=None): True Note: This function returns an array with at least one-dimension (1-d) - so it will not preserve 0-d arrays. + so it will not preserve 0-d arrays. """ return array(a, dtype, copy=False, order='F', ndmin=1) |