diff options
author | Charles Harris <charlesr.harris@gmail.com> | 2012-01-03 08:05:45 -0700 |
---|---|---|
committer | Charles Harris <charlesr.harris@gmail.com> | 2012-01-09 11:09:37 -0700 |
commit | a4e99a7998a30d8e777510aaa5926b436a844f2b (patch) | |
tree | 4539998dd7846b8e1ce27800f79be0f32a48d666 /numpy/polynomial/polyutils.py | |
parent | 88163cb1ffb3a98a4ecc74481312a618813a9f1e (diff) | |
download | numpy-a4e99a7998a30d8e777510aaa5926b436a844f2b.tar.gz |
SPELL: Spellcheck the modules. Clarify an example.
Diffstat (limited to 'numpy/polynomial/polyutils.py')
-rw-r--r-- | numpy/polynomial/polyutils.py | 4 |
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 |