From bfb651530f0bd4542d3e597c839896d53e0d82a7 Mon Sep 17 00:00:00 2001 From: willweil <32082133+willweil@users.noreply.github.com> Date: Fri, 22 Feb 2019 19:16:37 -0500 Subject: [PATCH] Correct a typo of version number for interpolate() (#25418) --- doc/source/user_guide/missing_data.rst | 2 +- pandas/core/generic.py | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/doc/source/user_guide/missing_data.rst b/doc/source/user_guide/missing_data.rst index a462f01dcd14f8..7883814e91c94b 100644 --- a/doc/source/user_guide/missing_data.rst +++ b/doc/source/user_guide/missing_data.rst @@ -335,7 +335,7 @@ examined :ref:`in the API `. Interpolation ~~~~~~~~~~~~~ -.. versionadded:: 0.21.0 +.. versionadded:: 0.23.0 The ``limit_area`` keyword argument was added. diff --git a/pandas/core/generic.py b/pandas/core/generic.py index 36475651235236..eb84a9a5810f4f 100644 --- a/pandas/core/generic.py +++ b/pandas/core/generic.py @@ -6648,7 +6648,7 @@ def replace(self, to_replace=None, value=None, inplace=False, limit=None, (interpolate). * 'outside': Only fill NaNs outside valid values (extrapolate). - .. versionadded:: 0.21.0 + .. versionadded:: 0.23.0 downcast : optional, 'infer' or None, defaults to None Downcast dtypes if possible.