summaryrefslogtreecommitdiff
path: root/numpy/core/numeric.py
diff options
context:
space:
mode:
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)