summaryrefslogtreecommitdiff
path: root/numpy/core/defchararray.py
diff options
context:
space:
mode:
authoryuki <drsuaimqjgar@gmail.com>2023-04-03 09:40:43 +0000
committeryuki <drsuaimqjgar@gmail.com>2023-04-03 10:29:39 +0000
commitf9fef812b9ec4ad2fe4feaf290652e3e814e5f08 (patch)
tree41013247705585e49ac8084fc2aeccbd2078aca0 /numpy/core/defchararray.py
parent240732d6993bba2ef673f1d1995c4b2b4bef1b2e (diff)
downloadnumpy-f9fef812b9ec4ad2fe4feaf290652e3e814e5f08.tar.gz
DOC: Fix a reference to built-in `len` in `char.str_len` docstring
Built-in function `len()` should not have prefix `builtins.`, so removed it to fix the reference.
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 b1ed67690..11c5a30bf 100644
--- a/numpy/core/defchararray.py
+++ b/numpy/core/defchararray.py
@@ -278,7 +278,7 @@ def str_len(a):
See Also
--------
- builtins.len
+ len
Examples
--------