summaryrefslogtreecommitdiff
path: root/numpy/core/defchararray.py
diff options
context:
space:
mode:
authorCJ Carey <perimosocordiae@gmail.com>2017-03-17 16:40:04 -0400
committerGitHub <noreply@github.com>2017-03-17 16:40:04 -0400
commita6146e10e1cf92506a926fdccea1cab7b0c07096 (patch)
treed7a0e504bfb79835444f033d22bb7f19eb610d76 /numpy/core/defchararray.py
parentdc04055d464401ccb21269b1a972466bfbe67fbe (diff)
downloadnumpy-a6146e10e1cf92506a926fdccea1cab7b0c07096.tar.gz
DOC: fix minor docstring typos
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 a11b343cb..e5f685369 100644
--- a/numpy/core/defchararray.py
+++ b/numpy/core/defchararray.py
@@ -1289,7 +1289,7 @@ def split(a, sep=None, maxsplit=None):
For each element in `a`, return a list of the words in the
string, using `sep` as the delimiter string.
- Calls `str.rsplit` element-wise.
+ Calls `str.split` element-wise.
Parameters
----------
@@ -1383,7 +1383,7 @@ def strip(a, chars=None):
For each element in `a`, return a copy with the leading and
trailing characters removed.
- Calls `str.rstrip` element-wise.
+ Calls `str.strip` element-wise.
Parameters
----------