summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorCharles Harris <charlesr.harris@gmail.com>2016-10-18 10:22:39 -0400
committerGitHub <noreply@github.com>2016-10-18 10:22:39 -0400
commit9bafab42c5d5b11023ef33622be425fc54584d6f (patch)
treee43350c7da9f095ca0620495955c1d1f56a51c99
parent7c5163ad798ff30d9cb6f49dee8645e89d293c10 (diff)
parentd720d62a0bdc8813511d58e81fd6d781458be8cd (diff)
downloadnumpy-9bafab42c5d5b11023ef33622be425fc54584d6f.tar.gz
Merge pull request #8168 from wrwrwr/genfromtxt-spelling
DOC: Minor spelling fix in genfromtxt() docstring.
-rw-r--r--numpy/lib/npyio.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/numpy/lib/npyio.py b/numpy/lib/npyio.py
index 376d34b91..2bc14ed01 100644
--- a/numpy/lib/npyio.py
+++ b/numpy/lib/npyio.py
@@ -1329,7 +1329,7 @@ def genfromtxt(fname, dtype=float, comments='#', delimiter=None,
----------
fname : file, str, pathlib.Path, list of str, generator
File, filename, list, or generator to read. If the filename
- extension is `.gz` or `.bz2`, the file is first decompressed. Mote
+ extension is `.gz` or `.bz2`, the file is first decompressed. Note
that generators must return byte strings in Python 3k. The strings
in a list or produced by a generator are treated as lines.
dtype : dtype, optional