summaryrefslogtreecommitdiff
path: root/numpy/lib/npyio.py
diff options
context:
space:
mode:
Diffstat (limited to 'numpy/lib/npyio.py')
-rw-r--r--numpy/lib/npyio.py4
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).