Skip to content

Commit 1b0ffaa

Browse files
tworecjorisvandenbossche
authored andcommitted
[Bacport #14543] BUG: tseries ceil doc fix (#14543)
(cherry picked from commit 47f117d)
1 parent 01b2af3 commit 1b0ffaa

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

pandas/tseries/base.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -100,7 +100,7 @@ def round(self, freq, *args, **kwargs):
100100
def floor(self, freq):
101101
return self._round(freq, np.floor)
102102

103-
@Appender(_round_doc % "floor")
103+
@Appender(_round_doc % "ceil")
104104
def ceil(self, freq):
105105
return self._round(freq, np.ceil)
106106

0 commit comments

Comments
 (0)