From 13aefc63aba9ca72100f6d9d740dad9ba2dd8017 Mon Sep 17 00:00:00 2001 From: Felix Yan Date: Wed, 14 Oct 2020 22:24:25 +0800 Subject: [PATCH] Correct a typo in protego.py --- src/protego.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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)