From 391424b6e01a939b20f47029b137e03ac4277cee Mon Sep 17 00:00:00 2001 From: Thomas Grainger Date: Thu, 22 Jan 2015 15:15:59 +0000 Subject: [PATCH] Fix missing text on Index documentation page. --- pandas/core/index.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pandas/core/index.py b/pandas/core/index.py index 1b4a691851a8a..9464e6de92721 100644 --- a/pandas/core/index.py +++ b/pandas/core/index.py @@ -1583,7 +1583,7 @@ def map(self, mapper): def isin(self, values, level=None): """ Compute boolean array of whether each index value is found in the - passed set of values + passed set of values. Parameters ----------