From c17e4235f70fad03273ba63736f499b3dc461ebd Mon Sep 17 00:00:00 2001 From: DaanVanHauwermeiren Date: Sat, 10 Mar 2018 16:41:32 +0100 Subject: [PATCH] update extended summary --- pandas/core/series.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pandas/core/series.py b/pandas/core/series.py index 3e5ef9d49aa83..9c9f7536c9f23 100644 --- a/pandas/core/series.py +++ b/pandas/core/series.py @@ -2748,7 +2748,7 @@ def isin(self, values): Check whether ``values`` are contained in Series. Return a boolean Series showing whether each element in the Series - is exactly contained in the passed sequence of ``values``. + matches an element in the passed sequence of ``values`` exactly. Parameters ----------