From d69d6c2ce0b088655464ba4eb7465024bcdbdfc7 Mon Sep 17 00:00:00 2001 From: Iulius Curt Date: Wed, 7 Sep 2016 13:27:52 +0300 Subject: [PATCH] Fix trivial typo in comment --- pandas/tseries/offsets.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pandas/tseries/offsets.py b/pandas/tseries/offsets.py index f12ba8083f545..051cc8aa4d018 100644 --- a/pandas/tseries/offsets.py +++ b/pandas/tseries/offsets.py @@ -814,7 +814,7 @@ def apply(self, other): if bd != 0: skip_bd = BusinessDay(n=bd) - # midnight busienss hour may not on BusinessDay + # midnight business hour may not on BusinessDay if not self.next_bday.onOffset(other): remain = other - self._prev_opening_time(other) other = self._next_opening_time(other + skip_bd) + remain