From 1183caf0c803712eb01941a37840cc005c933ec2 Mon Sep 17 00:00:00 2001 From: Daniel Saxton Date: Mon, 6 Apr 2020 07:52:46 -0500 Subject: [PATCH] DOC/CLN: Fix docstring typo --- pandas/core/indexes/base.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pandas/core/indexes/base.py b/pandas/core/indexes/base.py index 3aa8a1e93355d..d0319e9181bad 100644 --- a/pandas/core/indexes/base.py +++ b/pandas/core/indexes/base.py @@ -4232,7 +4232,7 @@ def equals(self, other: Any) -> bool: >>> idx1.equals(idx2) False - The oreder is compared + The order is compared >>> ascending_idx = pd.Index([1, 2, 3]) >>> ascending_idx