Skip to content

Commit 3d73d05

Browse files
thrasibulejorisvandenbossche
authored andcommitted
Small typos (#14789)
1 parent b787468 commit 3d73d05

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

pandas/tseries/offsets.py

+2-2
Original file line numberDiff line numberDiff line change
@@ -155,14 +155,14 @@ class DateOffset(object):
155155
DateOffsets can be created to move dates forward a given number of
156156
valid dates. For example, Bday(2) can be added to a date to move
157157
it two business days forward. If the date does not start on a
158-
valid date, first it is moved to a valid date. Thus psedo code
158+
valid date, first it is moved to a valid date. Thus pseudo code
159159
is:
160160
161161
def __add__(date):
162162
date = rollback(date) # does nothing if date is valid
163163
return date + <n number of periods>
164164
165-
When a date offset is created for a negitive number of periods,
165+
When a date offset is created for a negative number of periods,
166166
the date is first rolled forward. The pseudo code is:
167167
168168
def __add__(date):

0 commit comments

Comments
 (0)