diff options
author | Stephan Hoyer <shoyer@google.com> | 2018-10-12 21:29:45 -0700 |
---|---|---|
committer | Stephan Hoyer <shoyer@google.com> | 2018-10-12 21:29:45 -0700 |
commit | d22855bad96b50799f907924105ede9da8d30b00 (patch) | |
tree | 4f872af2e4b5eaf27c94409862dd6ca11de0d891 /numpy/core/defchararray.py | |
parent | 39fb169f62b97c1ef1c162b1999e41bcc9ed0b4e (diff) | |
download | numpy-d22855bad96b50799f907924105ede9da8d30b00.tar.gz |
Spelling
Diffstat (limited to 'numpy/core/defchararray.py')
-rw-r--r-- | numpy/core/defchararray.py | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/numpy/core/defchararray.py b/numpy/core/defchararray.py index f58abfbd5..0a8c7bbec 100644 --- a/numpy/core/defchararray.py +++ b/numpy/core/defchararray.py @@ -310,11 +310,11 @@ def add(x1, x2): return _vec_string(arr1, (dtype, out_size), '__add__', (arr2,)) -def _multiply_dispathcer(a, i): +def _multiply_dispatcher(a, i): return (a,) -@array_function_dispatch(_multiply_dispathcer) +@array_function_dispatch(_multiply_dispatcher) def multiply(a, i): """ Return (a * i), that is string multiple concatenation, |