summaryrefslogtreecommitdiff
path: root/numpy/lib/arraysetops.py
diff options
context:
space:
mode:
Diffstat (limited to 'numpy/lib/arraysetops.py')
-rw-r--r--numpy/lib/arraysetops.py6
1 files changed, 3 insertions, 3 deletions
diff --git a/numpy/lib/arraysetops.py b/numpy/lib/arraysetops.py
index 6d7d1c397..4a07d6e9e 100644
--- a/numpy/lib/arraysetops.py
+++ b/numpy/lib/arraysetops.py
@@ -555,9 +555,9 @@ def in1d(ar1, ar2, assume_unique=False, invert=False, method='auto'):
integer arrays.
- If 'auto', will automatically choose the method which is
expected to perform the fastest, which depends
- on the size and range of `ar2`. For larger sizes,
- 'dictionary' is chosen. For larger range or smaller
- sizes, 'sort' is chosen.
+ on the size and range of `ar2`. For larger sizes or
+ smaller range, 'dictionary' is chosen.
+ For larger range or smaller sizes, 'sort' is chosen.
.. versionadded:: 1.8.0