diff --git a/pandas/core/arrays/base.py b/pandas/core/arrays/base.py index a933a9ce11646..5f2c2a7772f78 100644 --- a/pandas/core/arrays/base.py +++ b/pandas/core/arrays/base.py @@ -1010,7 +1010,6 @@ def interpolate( * 'time': Works on daily and higher resolution data to interpolate given length of interval. * 'index', 'values': use the actual numerical values of the index. - * 'pad': Fill in NaNs using existing values. * 'nearest', 'zero', 'slinear', 'quadratic', 'cubic', 'barycentric', 'polynomial': Passed to scipy.interpolate.interp1d, whereas 'spline' is passed to scipy.interpolate.UnivariateSpline. These methods use