diff options
author | Valentin Haenel <valentin.haenel@gmx.de> | 2013-09-26 18:33:13 +0200 |
---|---|---|
committer | Valentin Haenel <valentin.haenel@gmx.de> | 2013-09-26 18:33:13 +0200 |
commit | 3c1871459794dbbddb9596cfe98753893e2bef24 (patch) | |
tree | addb88ef84f8b49a232df9942d31e36441558256 /numpy/lib | |
parent | 79a1e7a9c2ded59a632329dbdfbc4783300e0142 (diff) | |
download | numpy-3c1871459794dbbddb9596cfe98753893e2bef24.tar.gz |
fix two typos in npyio.py
Diffstat (limited to 'numpy/lib')
-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 888bf4370..9619511a4 100644 --- a/numpy/lib/npyio.py +++ b/numpy/lib/npyio.py @@ -328,7 +328,7 @@ def load(file, mmap_mode=None): with load('foo.npz') as data: a = data['a'] - The underlyling file descriptor is closed when exiting the 'with' block. + The underlying file descriptor is closed when exiting the 'with' block. Examples -------- @@ -934,7 +934,7 @@ def savetxt(fname, X, fmt='%.18e', delimiter=' ', newline='\n', header='', flags: ``-`` : left justify - ``+`` : Forces to preceed result with + or -. + ``+`` : Forces to precede result with + or -. ``0`` : Left pad the number with zeros instead of space (see width). |