summaryrefslogtreecommitdiff
path: root/numpy/core/numeric.py
diff options
context:
space:
mode:
authorTravis Oliphant <teoliphant@gmail.com>2018-10-31 17:02:22 -0500
committerTravis Oliphant <teoliphant@gmail.com>2018-10-31 17:02:22 -0500
commit7f48bb921863b2d1a64f511f0d8f05a1590b2b2a (patch)
tree6082798c05ce802feef7460ee7b85309bfebd4f9 /numpy/core/numeric.py
parent3da7c73103d653a6e431924f6f4084224b8bb73b (diff)
downloadnumpy-7f48bb921863b2d1a64f511f0d8f05a1590b2b2a.tar.gz
DOC: remove excess indentation in Note:
Diffstat (limited to 'numpy/core/numeric.py')
-rw-r--r--numpy/core/numeric.py4
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)