summaryrefslogtreecommitdiff
path: root/numpy/core/defchararray.py
diff options
context:
space:
mode:
authorBrian Wignall <brianwignall@gmail.com>2019-12-19 03:39:59 -0500
committerBrian Wignall <brianwignall@gmail.com>2019-12-19 03:39:59 -0500
commit0c2a5eb42c0cddf6844880f1494ddf7765bf9c7b (patch)
tree9a8005ae483b36cf80493ca1389a6002369ee3fd /numpy/core/defchararray.py
parent6d69a9e163858de5d0ea2ae810b8febc7eec1dbc (diff)
downloadnumpy-0c2a5eb42c0cddf6844880f1494ddf7765bf9c7b.tar.gz
Fix typos, via a Levenshtein-style corrector
Diffstat (limited to 'numpy/core/defchararray.py')
-rw-r--r--numpy/core/defchararray.py4
1 files changed, 2 insertions, 2 deletions
diff --git a/numpy/core/defchararray.py b/numpy/core/defchararray.py
index 2d89d6fe0..168fd8c79 100644
--- a/numpy/core/defchararray.py
+++ b/numpy/core/defchararray.py
@@ -358,7 +358,7 @@ def _mod_dispatcher(a, values):
def mod(a, values):
"""
Return (a % i), that is pre-Python 2.6 string formatting
- (iterpolation), element-wise for a pair of array_likes of str
+ (interpolation), element-wise for a pair of array_likes of str
or unicode.
Parameters
@@ -2112,7 +2112,7 @@ class chararray(ndarray):
def __mod__(self, i):
"""
Return (self % i), that is pre-Python 2.6 string formatting
- (iterpolation), element-wise for a pair of array_likes of `string_`
+ (interpolation), element-wise for a pair of array_likes of `string_`
or `unicode_`.
See also