From 9e6bc7911cbea5d04ba4efe9f3dcaaf389d65cd1 Mon Sep 17 00:00:00 2001 From: MilesCranmer Date: Fri, 10 Jun 2022 19:59:45 -0400 Subject: DOC: Clean up isin docstring --- numpy/lib/arraysetops.py | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) (limited to 'numpy/lib/arraysetops.py') 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 -- cgit v1.2.1