summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMario Corchero <mariocj89@gmail.com>2021-07-16 12:29:18 +0200
committerGitHub <noreply@github.com>2021-07-16 12:29:18 +0200
commitb21555f3b6afd2a0c660293b21e19b32f1d4f50e (patch)
treeaf610a8ecb5eb94bb50efa9cd8434cb0aff929f0
parentb3180d3aab2925e41c8cc5bfd84c640dcad6003c (diff)
parent7d2e7f639dc6075b2db45981ceefb748e452d441 (diff)
downloaddateutil-git-b21555f3b6afd2a0c660293b21e19b32f1d4f50e.tar.gz
Merge pull request #1148 from cclauss/patch-1
Fix typo discovered by codespell
-rw-r--r--dateutil/rrule.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/dateutil/rrule.py b/dateutil/rrule.py
index b320339..571a0d2 100644
--- a/dateutil/rrule.py
+++ b/dateutil/rrule.py
@@ -182,7 +182,7 @@ class rrulebase(object):
# __len__() introduces a large performance penalty.
def count(self):
""" Returns the number of recurrences in this set. It will have go
- trough the whole recurrence, if this hasn't been done before. """
+ through the whole recurrence, if this hasn't been done before. """
if self._len is None:
for x in self:
pass