diff options
author | Charles Harris <charlesr.harris@gmail.com> | 2014-07-31 19:34:18 -0600 |
---|---|---|
committer | Charles Harris <charlesr.harris@gmail.com> | 2014-07-31 19:36:58 -0600 |
commit | 34698b64f90b985396f123f3659edc7a95d232ee (patch) | |
tree | 30d8c3cb7cb34e9159456b1e4f2b59835145254a /numpy/lib/_iotools.py | |
parent | 01b0d7e82211b581aaff925e3ccc36cff9ac1895 (diff) | |
download | numpy-34698b64f90b985396f123f3659edc7a95d232ee.tar.gz |
DOC: Fix typo in _iotools.py docstring.
The error is in the StringConverter.upgrade docstring.
Diffstat (limited to 'numpy/lib/_iotools.py')
-rw-r--r-- | numpy/lib/_iotools.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/numpy/lib/_iotools.py b/numpy/lib/_iotools.py index 1b1180893..9108b2e4c 100644 --- a/numpy/lib/_iotools.py +++ b/numpy/lib/_iotools.py @@ -687,7 +687,7 @@ class StringConverter(object): def upgrade(self, value): """ - Rind the best converter for a given string, and return the result. + Find the best converter for a given string, and return the result. The supplied string `value` is converted by testing different converters in order. First the `func` method of the |