summaryrefslogtreecommitdiff
path: root/dateutil/parser
diff options
context:
space:
mode:
authorHugo <hugovk@users.noreply.github.com>2019-08-26 09:41:26 +0300
committerPaul Ganssle <paul@ganssle.io>2019-08-27 10:56:09 -0400
commitb7668eaf95bc1bddb02c6e377cfe21c65fccc4c6 (patch)
treeb1ceca928fa7ef8152a40cc79c81b4ef65f4b479 /dateutil/parser
parentc45497893ed4302287de809675fb68198d4f04ff (diff)
downloaddateutil-git-b7668eaf95bc1bddb02c6e377cfe21c65fccc4c6.tar.gz
Fix typos in comments and documentation
Fixes several misspellings, typos and styling errors (e.g. github -> GitHub) in the comments and documentation.
Diffstat (limited to 'dateutil/parser')
-rw-r--r--dateutil/parser/_parser.py8
1 files changed, 4 insertions, 4 deletions
diff --git a/dateutil/parser/_parser.py b/dateutil/parser/_parser.py
index e3e269c..458aa6a 100644
--- a/dateutil/parser/_parser.py
+++ b/dateutil/parser/_parser.py
@@ -423,7 +423,7 @@ class _ymd(list):
elif not self.has_month:
return 1 <= value <= 31
elif not self.has_year:
- # Be permissive, assume leapyear
+ # Be permissive, assume leap year
month = self[self.mstridx]
return 1 <= value <= monthrange(2000, month)[1]
else:
@@ -539,7 +539,7 @@ class _ymd(list):
year, month, day = self
else:
# 01-Jan-01
- # Give precendence to day-first, since
+ # Give precedence to day-first, since
# two-digit years is usually hand-written.
day, month, year = self
@@ -1025,7 +1025,7 @@ class parser(object):
hms_idx = idx + 2
elif idx > 0 and info.hms(tokens[idx-1]) is not None:
- # There is a "h", "m", or "s" preceeding this token. Since neither
+ # There is a "h", "m", or "s" preceding this token. Since neither
# of the previous cases was hit, there is no label following this
# token, so we use the previous label.
# e.g. the "04" in "12h04"
@@ -1105,7 +1105,7 @@ class parser(object):
def _parse_min_sec(self, value):
# TODO: Every usage of this function sets res.second to the return
# value. Are there any cases where second will be returned as None and
- # we *dont* want to set res.second = None?
+ # we *don't* want to set res.second = None?
minute = int(value)
second = None