diff options
author | jarondl <jarondl@users.noreply.github.com> | 2014-03-04 09:24:39 +0200 |
---|---|---|
committer | jarondl <jarondl@users.noreply.github.com> | 2014-03-04 09:24:39 +0200 |
commit | 6030f096a34e6bbd6a504b6e4d5f6773a3c54b6e (patch) | |
tree | 872d4565f6bba39d82101bed56ac44c2856eea8f /numpy/lib/npyio.py | |
parent | 479437d295edde0158cff805c40fe3e5a17d3954 (diff) | |
download | numpy-6030f096a34e6bbd6a504b6e4d5f6773a3c54b6e.tar.gz |
DOC: two minor typos in genfromtxt
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 2e29d74f3..4268e6f06 100644 --- a/numpy/lib/npyio.py +++ b/numpy/lib/npyio.py @@ -1203,9 +1203,9 @@ def genfromtxt(fname, dtype=float, comments='#', delimiter=None, `skip_rows` was deprecated in numpy 1.5, and will be removed in numpy 2.0. Please use `skip_header` instead. skip_header : int, optional - The numbers of lines to skip at the beginning of the file. + The number of lines to skip at the beginning of the file. skip_footer : int, optional - The numbers of lines to skip at the end of the file. + The number of lines to skip at the end of the file. converters : variable, optional The set of functions that convert the data of a column to a value. The converters can also be used to provide a default value |