summaryrefslogtreecommitdiff
path: root/numpy/polynomial/polyutils.py
diff options
context:
space:
mode:
Diffstat (limited to 'numpy/polynomial/polyutils.py')
-rw-r--r--numpy/polynomial/polyutils.py4
1 files changed, 2 insertions, 2 deletions
diff --git a/numpy/polynomial/polyutils.py b/numpy/polynomial/polyutils.py
index 25d50837a..8861328c4 100644
--- a/numpy/polynomial/polyutils.py
+++ b/numpy/polynomial/polyutils.py
@@ -80,7 +80,7 @@ if sys.version_info[:2] < (2,5) :
return False
#
-# Helper functions to convert inputs to 1d arrays
+# Helper functions to convert inputs to 1-D arrays
#
def trimseq(seq) :
"""Remove small Poly series coefficients.
@@ -133,7 +133,7 @@ def as_series(alist, trim=True) :
Returns
-------
- [a1, a2,...] : list of 1d-arrays
+ [a1, a2,...] : list of 1-D arrays
A copy of the input data as a list of 1-d arrays.
Raises