diff options
author | Leonard Richardson <leonardr@segfault.org> | 2016-07-26 21:23:15 -0400 |
---|---|---|
committer | Leonard Richardson <leonardr@segfault.org> | 2016-07-26 21:23:15 -0400 |
commit | f248e7d7935e65eb1f2280c14c9b9d310e5dc9e5 (patch) | |
tree | 7ee47c99de1e5b50d7aa20af1a2ce32ddf1c1372 /bs4/element.py | |
parent | f2ef3bd2662799d19af52fc4f6af31d322c897ca (diff) | |
parent | f5c16bf55136202b4b955104c6f33e210ead32c9 (diff) |
Spelling cleanup contributed by Ville Skyttä.
Diffstat (limited to 'bs4/element.py')
-rw-r--r-- | bs4/element.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/bs4/element.py b/bs4/element.py index 5a3665e..b100d18 100644 --- a/bs4/element.py +++ b/bs4/element.py @@ -649,7 +649,7 @@ class PageElement(object): return lambda el: el._attr_value_as_string( attribute, '').startswith(value) elif operator == '$': - # string represenation of `attribute` ends with `value` + # string representation of `attribute` ends with `value` return lambda el: el._attr_value_as_string( attribute, '').endswith(value) elif operator == '*': |