Skip to content

Commit 49888e0

Browse files
authored
DOC: Fixed docstring in Series .isin() method (#34600)
* DOC: Fixed docstring in Series .isin() method
1 parent cb9ac7d commit 49888e0

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

pandas/core/series.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -4513,7 +4513,7 @@ def memory_usage(self, index=True, deep=False):
45134513

45144514
def isin(self, values) -> "Series":
45154515
"""
4516-
Check whether `values` are contained in Series.
4516+
Whether elements in Series are contained in `values`.
45174517
45184518
Return a boolean Series showing whether each element in the Series
45194519
matches an element in the passed sequence of `values` exactly.

0 commit comments

Comments
 (0)