diff options
author | Lars Buitinck <L.J.Buitinck@uva.nl> | 2013-08-01 14:46:01 +0200 |
---|---|---|
committer | Lars Buitinck <L.J.Buitinck@uva.nl> | 2013-08-01 14:46:01 +0200 |
commit | 24629467570d4bb60b169c6a5e2397dcbc0484bb (patch) | |
tree | cffce5d70275ed8067e28bcf005b756011987ae4 /numpy/core/defchararray.py | |
parent | b307a8a5729e5e18fa8a7ff56892947fc2d2eb79 (diff) | |
download | numpy-24629467570d4bb60b169c6a5e2397dcbc0484bb.tar.gz |
DOC: np.char.startswith checks a prefix, not a suffix
Diffstat (limited to 'numpy/core/defchararray.py')
-rw-r--r-- | numpy/core/defchararray.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/numpy/core/defchararray.py b/numpy/core/defchararray.py index 92995baa1..121e32314 100644 --- a/numpy/core/defchararray.py +++ b/numpy/core/defchararray.py @@ -1357,7 +1357,7 @@ def startswith(a, prefix, start=0, end=None): ---------- a : array_like of str or unicode - suffix : str + prefix : str start, end : int, optional With optional `start`, test beginning at that position. With |