diff options
author | Charles Harris <charlesr.harris@gmail.com> | 2016-07-28 15:17:56 -0500 |
---|---|---|
committer | GitHub <noreply@github.com> | 2016-07-28 15:17:56 -0500 |
commit | bc744c52bb36a598aabee5eaffc0b7729feaa040 (patch) | |
tree | aa50540dd56dc9e03f610d0e354f5bd1274a6e28 | |
parent | 8c808a6ae8d9218486a8bfa3ade0d42d6f0d0680 (diff) | |
parent | 7d25864a56bb8fb53face5cf1ad0721795e03a02 (diff) | |
download | numpy-bc744c52bb36a598aabee5eaffc0b7729feaa040.tar.gz |
Merge pull request #7879 from dunneff/patch-1
DOC: fix typo in documentation of loadtxt (closes #7878)
-rw-r--r-- | numpy/lib/npyio.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/numpy/lib/npyio.py b/numpy/lib/npyio.py index 9e3127c89..534aa695c 100644 --- a/numpy/lib/npyio.py +++ b/numpy/lib/npyio.py @@ -751,7 +751,7 @@ def loadtxt(fname, dtype=float, comments='#', delimiter=None, Also when a single column has to be read it is possible to use an integer instead of a tuple. E.g ``usecols = 3`` reads the - third column the same way as `usecols = (3,)`` would. + fourth column the same way as `usecols = (3,)`` would. unpack : bool, optional If True, the returned array is transposed, so that arguments may be |