diff --git a/src/protego.py b/src/protego.py index 91c8e22..21afd65 100644 --- a/src/protego.py +++ b/src/protego.py @@ -62,7 +62,7 @@ def __init__(self, pattern): self._pattern_compiled = False def match(self, url): - """Retun True if pattern matches the given URL, otherwise return False.""" + """Return True if pattern matches the given URL, otherwise return False.""" # check if pattern is already compiled if self._pattern_compiled: return self._pattern.match(url)