diff options
author | Dongjoon Hyun <dongjoon@apache.org> | 2016-02-19 00:22:33 -0800 |
---|---|---|
committer | Dongjoon Hyun <dongjoon@apache.org> | 2016-02-19 00:28:09 -0800 |
commit | 707772433ca82df688ca8c7db8dfc5531a517edc (patch) | |
tree | 08130a989f2ed3dbf709543c84d4c09539a325ed /numpy/polynomial/polyutils.py | |
parent | 711b2a9ccfb54c09cdc483ee511035bda60f3f0b (diff) | |
download | numpy-707772433ca82df688ca8c7db8dfc5531a517edc.tar.gz |
MAINT: Fix typos in docs/comment of `ma` and `polynomial` modules.
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 c1b7528d5..5b6663bfd 100644 --- a/numpy/polynomial/polyutils.py +++ b/numpy/polynomial/polyutils.py @@ -1,5 +1,5 @@ """ -Utililty classes and functions for the polynomial modules. +Utility classes and functions for the polynomial modules. This module provides: error and warning objects; a polynomial base class; and some routines used in both the `polynomial` and `chebyshev` modules. @@ -82,7 +82,7 @@ class PolyBase(object): Deprecated in numpy 1.9.0, use the abstract ABCPolyBase class instead. Note that the latter - reguires a number of virtual functions to be + requires a number of virtual functions to be implemented. """ |