diff options
author | Unknown <kunda@scribus.net> | 2017-12-12 19:08:43 -0500 |
---|---|---|
committer | Unknown <kunda@scribus.net> | 2017-12-12 19:09:07 -0500 |
commit | de100beb4b53833f817d4ba9c6d940e4cff96d43 (patch) | |
tree | eba76bff8ae029b4fb805bd6cd4bff4337922f1d /numpy/lib/npyio.py | |
parent | 356b481bcf8783a4ecca6aaa7d7712e347c16101 (diff) | |
download | numpy-de100beb4b53833f817d4ba9c6d940e4cff96d43.tar.gz |
DOC: fix minor typos
Diffstat (limited to 'numpy/lib/npyio.py')
-rw-r--r-- | numpy/lib/npyio.py | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/numpy/lib/npyio.py b/numpy/lib/npyio.py index 7b51cb9c7..66dc68538 100644 --- a/numpy/lib/npyio.py +++ b/numpy/lib/npyio.py @@ -766,7 +766,7 @@ def _getconv(dtype): else: return asstr -# amount of lines loadtxt reads in one chunk, can be overriden for testing +# amount of lines loadtxt reads in one chunk, can be overridden for testing _loadtxt_chunksize = 50000 def loadtxt(fname, dtype=float, comments='#', delimiter=None, @@ -1542,7 +1542,7 @@ def genfromtxt(fname, dtype=float, comments='#', delimiter=None, names : {None, True, str, sequence}, optional If `names` is True, the field names are read from the first line after the first `skip_header` lines. This line can optionally be proceeded - by a comment delimeter. If `names` is a sequence or a single-string of + by a comment delimiter. If `names` is a sequence or a single-string of comma-separated names, the names will be used to define the field names in a structured dtype. If `names` is None, the names of the dtype fields will be used, if any. |