From e8d3c892becacabf1c919860aea352871da420e0 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Ond=C5=99ej=20=C4=8Cert=C3=ADk?= Date: Tue, 7 Jul 2015 13:37:38 -0500 Subject: [PATCH] Fix a typo 'does' -> 'do' --- 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 0f3a4adb0b33a..4c94ab66d3de2 100644 --- a/pandas/core/index.py +++ b/pandas/core/index.py @@ -1055,7 +1055,7 @@ def __hash__(self): raise TypeError("unhashable type: %r" % type(self).__name__) def __setitem__(self, key, value): - raise TypeError("Indexes does not support mutable operations") + raise TypeError("Indexes do not support mutable operations") def __getitem__(self, key): """