summaryrefslogtreecommitdiff
path: root/numpy/lib/recfunctions.py
diff options
context:
space:
mode:
authorCharles Harris <charlesr.harris@gmail.com>2020-01-14 13:03:53 -0700
committerGitHub <noreply@github.com>2020-01-14 13:03:53 -0700
commit558080ef33de051c52bd1214c372380680cb6800 (patch)
tree0d26e7c6bfa7e39497d25a9910b077e36cef5e6c /numpy/lib/recfunctions.py
parentfbd807f5c5587407847f1aa54e6dada79bb90c35 (diff)
parentb485da191ec08597835292e45f3ee52f3b1e23e5 (diff)
downloadnumpy-558080ef33de051c52bd1214c372380680cb6800.tar.gz
Merge pull request #15324 from bwignall/typo
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: