Fix typo (GH-23019)

Fixed possible typo in comment
(cherry picked from commit bfe544d2f2)

Co-authored-by: Harry <harry.lees@gmail.com>
This commit is contained in:
Miss Islington (bot) 2021-02-03 13:48:22 -08:00 committed by GitHub
parent 12bfc595c4
commit 2603d77a6b
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -2358,7 +2358,7 @@ _EPOCH = datetime(1970, 1, 1, tzinfo=timezone.utc)
# This is again a requirement for a sane tzinfo class.
#
# 4. (x+k).s = x.s
# This follows from #2, and that datimetimetz+timedelta preserves tzinfo.
# This follows from #2, and that datetime.timetz+timedelta preserves tzinfo.
#
# 5. (x+k).n = x.n + k
# Again follows from how arithmetic is defined.