diff options
author | Charles Harris <charlesr.harris@gmail.com> | 2011-02-18 05:19:30 -0700 |
---|---|---|
committer | Charles Harris <charlesr.harris@gmail.com> | 2011-02-18 05:19:30 -0700 |
commit | 9e71af4a49d0ab9f2ef881bf7f40eb937a207ac3 (patch) | |
tree | 009a1101d86ab44db8b4634a0b2f5547fe10ce4a /numpy/lib/recfunctions.py | |
parent | af1e833e49dafc6d96b20de90a44633f11450b3f (diff) | |
download | numpy-9e71af4a49d0ab9f2ef881bf7f40eb937a207ac3.tar.gz |
TYP: Fix typo.
Diffstat (limited to 'numpy/lib/recfunctions.py')
-rw-r--r-- | numpy/lib/recfunctions.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/numpy/lib/recfunctions.py b/numpy/lib/recfunctions.py index f722a89d1..b3c210fff 100644 --- a/numpy/lib/recfunctions.py +++ b/numpy/lib/recfunctions.py @@ -376,7 +376,7 @@ def merge_arrays(seqarrays, # Only one item in the input sequence ? if (len(seqarrays) == 1): seqarrays = np.asanyarray(seqarrays[0]) - # Do we have a single ndarary as input ? + # Do we have a single ndarray as input ? if isinstance(seqarrays, (ndarray, np.void)): seqdtype = seqarrays.dtype if (not flatten) or \ |