diff options
author | dunneff <dunneff@tcd.ie> | 2016-07-28 15:18:33 +0100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2016-07-28 15:18:33 +0100 |
commit | 7d25864a56bb8fb53face5cf1ad0721795e03a02 (patch) | |
tree | e6851cca2ca134232ca1f79ca447b296b94a8929 /numpy/lib/npyio.py | |
parent | 4fb9a228c5b3a26eaa67e79a12e5a4d75c01e952 (diff) | |
download | numpy-7d25864a56bb8fb53face5cf1ad0721795e03a02.tar.gz |
DOC: fix typo in documentation of loadtxt (closes #7878)
Diffstat (limited to 'numpy/lib/npyio.py')
-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 |