diff --git a/scrapy/utils/response.py b/scrapy/utils/response.py index 23bd2da65..7a6f4a96f 100644 --- a/scrapy/utils/response.py +++ b/scrapy/utils/response.py @@ -36,7 +36,7 @@ def get_meta_refresh( response: "scrapy.http.response.text.TextResponse", ignore_tags: Optional[Iterable[str]] = ('script', 'noscript'), ) -> Union[Tuple[None, None], Tuple[float, str]]: - """Parse the http-equiv refrsh parameter from the given response""" + """Parse the http-equiv refresh parameter from the given response""" if response not in _metaref_cache: text = response.text[0:4096] _metaref_cache[response] = html.get_meta_refresh(