From ac85f84a2217a20ffd09d8a0e2bede3e349b639f Mon Sep 17 00:00:00 2001 From: Thomas Grainger Date: Thu, 5 Feb 2015 15:00:49 +0000 Subject: [PATCH] Fix truncated Index monotonic documentation --- pandas/core/index.py | 10 ++++++---- 1 file changed, 6 insertions(+), 4 deletions(-) diff --git a/pandas/core/index.py b/pandas/core/index.py index 63d8554cbaa03..2e23c38dd3457 100644 --- a/pandas/core/index.py +++ b/pandas/core/index.py @@ -581,15 +581,17 @@ def is_monotonic(self): @property def is_monotonic_increasing(self): - """ return if the index is monotonic increasing (only equal or - increasing) values + """ + return if the index is monotonic increasing (only equal or + increasing) values. """ return self._engine.is_monotonic_increasing @property def is_monotonic_decreasing(self): - """ return if the index is monotonic decreasing (only equal or - decreasing values + """ + return if the index is monotonic decreasing (only equal or + decreasing) values. """ return self._engine.is_monotonic_decreasing