Fix typo in docstring for Calendar.itermonthdays().

This commit is contained in:
Walter Dörwald 2008-02-07 19:57:32 +00:00
parent a53800e02c
commit d0e5b766f1
1 changed files with 2 additions and 2 deletions

View File

@ -179,8 +179,8 @@ class Calendar(object):
def itermonthdays(self, year, month):
"""
Like itermonthdates(), but will yield day numbers tuples. For days
outside the specified month the day number is 0.
Like itermonthdates(), but will yield day numbers. For days outside
the specified month the day number is 0.
"""
for date in self.itermonthdates(year, month):
if date.month != month: