diff options
author | Robert McGibbon <rmcgibbo@gmail.com> | 2015-03-01 22:53:19 -0800 |
---|---|---|
committer | Robert McGibbon <rmcgibbo@gmail.com> | 2015-03-02 12:00:18 -0800 |
commit | 6ca778d275ade854cfc81a6a975230c4ccd9402c (patch) | |
tree | bbabe2a612cb69b4fd6fa33926383804a11e0c33 /numpy/lib/npyio.py | |
parent | fba3140f31e67487666529e66241047517a72bcb (diff) | |
download | numpy-6ca778d275ade854cfc81a6a975230c4ccd9402c.tar.gz |
DOC: Reconcile docstrings and function signatures where they disagree
Fixed typos in docstrings were updated for functions where the parameter
names in the docstring didn't match the function signature.
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 0632ba1f8..2b01caed9 100644 --- a/numpy/lib/npyio.py +++ b/numpy/lib/npyio.py @@ -1240,8 +1240,8 @@ def genfromtxt(fname, dtype=float, comments='#', delimiter=None, The string used to separate values. By default, any consecutive whitespaces act as delimiter. An integer or sequence of integers can also be provided as width(s) of each field. - skip_rows : int, optional - `skip_rows` was deprecated in numpy 1.5, and will be removed in + skiprows : int, optional + `skiprows` was deprecated in numpy 1.5, and will be removed in numpy 2.0. Please use `skip_header` instead. skip_header : int, optional The number of lines to skip at the beginning of the file. |