diff --git a/requests_html.py b/requests_html.py index 050316d..48e7fb2 100644 --- a/requests_html.py +++ b/requests_html.py @@ -395,7 +395,7 @@ class Element(BaseParser): if self._attrs is None: self._attrs = {k: v for k, v in self.element.items()} - # Split class and rel up, as there are ussually many of them: + # Split class and rel up, as there are usually many of them: for attr in ['class', 'rel']: if attr in self._attrs: self._attrs[attr] = tuple(self._attrs[attr].split())