summaryrefslogtreecommitdiff
path: root/numpy/lib/recfunctions.py
diff options
context:
space:
mode:
authorBrian Wignall <brianwignall@gmail.com>2020-01-14 07:27:33 -0500
committerBrian Wignall <brianwignall@gmail.com>2020-01-14 07:27:33 -0500
commitb485da191ec08597835292e45f3ee52f3b1e23e5 (patch)
tree49d81469ad7574f206662cd586608d42e182f95f /numpy/lib/recfunctions.py
parent266c588b393ea0d3b89d583e014e9befe654bed2 (diff)
downloadnumpy-b485da191ec08597835292e45f3ee52f3b1e23e5.tar.gz
DOC: fix typos
Diffstat (limited to 'numpy/lib/recfunctions.py')
-rw-r--r--numpy/lib/recfunctions.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/numpy/lib/recfunctions.py b/numpy/lib/recfunctions.py
index 93aa67a3b..4e62169f4 100644
--- a/numpy/lib/recfunctions.py
+++ b/numpy/lib/recfunctions.py
@@ -436,7 +436,7 @@ def merge_arrays(seqarrays, fill_value=-1, flatten=False,
if seqdtype.names is None:
seqdtype = np.dtype([('', seqdtype)])
if not flatten or _zip_dtype((seqarrays,), flatten=True) == seqdtype:
- # Minimal processing needed: just make sure everythng's a-ok
+ # Minimal processing needed: just make sure everything's a-ok
seqarrays = seqarrays.ravel()
# Find what type of array we must return
if usemask: