From 6758fba2126a9a26a1a83568c7bf8735174eadfd Mon Sep 17 00:00:00 2001 From: Kovid Goyal Date: Fri, 20 Feb 2015 16:32:10 +0530 Subject: [PATCH] ... --- src/css_selectors/select.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/css_selectors/select.py b/src/css_selectors/select.py index 2f60b5cef4..2981fe66c0 100644 --- a/src/css_selectors/select.py +++ b/src/css_selectors/select.py @@ -92,7 +92,7 @@ class Select(object): Tags are returned in document order. Note that attribute and tag names are matched case-insensitively. Also namespaces are ignored (this is for performance of the common case). The UI related selectors are not - implemented, such as :enabled, :diabled, :checked, :hover, etc. Similarly, + implemented, such as :enabled, :disabled, :checked, :hover, etc. Similarly, the non-element related selectors such as ::first-line, ::first-letter, ::before, etc. are not implemented. @@ -102,7 +102,7 @@ class Select(object): This class can be easily sub-classed to work with tree implementations other than lxml. Simply override the methods in the ``Tree Integration`` - block. + block below. '''