summaryrefslogtreecommitdiff
path: root/numpy/lib/arraysetops.py
diff options
context:
space:
mode:
authorMatthias Bussonnier <bussonniermatthias@gmail.com>2022-03-21 10:43:28 +0100
committerMatthias Bussonnier <bussonniermatthias@gmail.com>2022-03-21 10:45:24 +0100
commitc4efd1f2f23bffb5de34a6348bcdbb33d7d0365a (patch)
treec51eab206de10693fd69fd12732790b2d677b25a /numpy/lib/arraysetops.py
parent1d9ade8895f8f385e1d44f41a752dbb9ba3438b2 (diff)
downloadnumpy-c4efd1f2f23bffb5de34a6348bcdbb33d7d0365a.tar.gz
DOC: misc fixes:
- improper urls - a few use of single bakcticks where many are expected - Proper numpydoc format [ci skip] [skip azp] [skip circle]
Diffstat (limited to 'numpy/lib/arraysetops.py')
-rw-r--r--numpy/lib/arraysetops.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/numpy/lib/arraysetops.py b/numpy/lib/arraysetops.py
index bd56b6975..d44e1a983 100644
--- a/numpy/lib/arraysetops.py
+++ b/numpy/lib/arraysetops.py
@@ -640,7 +640,7 @@ def _isin_dispatcher(element, test_elements, assume_unique=None, invert=None):
@array_function_dispatch(_isin_dispatcher)
def isin(element, test_elements, assume_unique=False, invert=False):
"""
- Calculates `element in test_elements`, broadcasting over `element` only.
+ Calculates ``element in test_elements``, broadcasting over `element` only.
Returns a boolean array of the same shape as `element` that is True
where an element of `element` is in `test_elements` and False otherwise.