Skip to content

Commit f08d0a9

Browse files
fix docstring
1 parent 53bdae3 commit f08d0a9

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

pandas/core/arrays/base.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -955,7 +955,7 @@ def _pad_or_backfill(
955955
Examples
956956
--------
957957
>>> arr = pd.array([np.nan, np.nan, 2, 3, np.nan, np.nan])
958-
>>> arr.pad_or_backfill(method="backfill", limit=1)
958+
>>> arr._pad_or_backfill(method="backfill", limit=1)
959959
<IntegerArray>
960960
[<NA>, 2, 2, 3, <NA>, <NA>]
961961
Length: 6, dtype: Int64

0 commit comments

Comments
 (0)