Skip to content

Commit 47f117d

Browse files
tworecjreback
authored andcommitted
BUG: tseries ceil doc fix (pandas-dev#14543)
1 parent 1ce6299 commit 47f117d

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)