summaryrefslogtreecommitdiff
path: root/numpy/core/defchararray.py
diff options
context:
space:
mode:
Diffstat (limited to 'numpy/core/defchararray.py')
-rw-r--r--numpy/core/defchararray.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/numpy/core/defchararray.py b/numpy/core/defchararray.py
index 35c1d907e..799887a7d 100644
--- a/numpy/core/defchararray.py
+++ b/numpy/core/defchararray.py
@@ -561,7 +561,7 @@ def expandtabs(a, tabsize=8):
replaced by one or more spaces, depending on the current column
and the given `tabsize`. The column number is reset to zero after
each newline occurring in the string. If `tabsize` is not given, a
- tab size of 8 characters is assumed. This doesn’t understand other
+ tab size of 8 characters is assumed. This doesn't understand other
non-printing characters or escape sequences.
Parameters