From ee905dab662c2bc3ad136404e3c74adf0511f84c Mon Sep 17 00:00:00 2001 From: Gene Wood Date: Mon, 23 Nov 2015 21:00:11 -0800 Subject: Fixing typo in example of nth-of-type css selector --- doc/source/index.rst | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'doc/source/index.rst') diff --git a/doc/source/index.rst b/doc/source/index.rst index 3bc9537..8258e97 100644 --- a/doc/source/index.rst +++ b/doc/source/index.rst @@ -1649,7 +1649,7 @@ You can find tags:: soup.select("title") # [The Dormouse's story] - soup.select("p nth-of-type(3)") + soup.select("p:nth-of-type(3)") # [

...

] Find tags beneath other tags:: -- cgit v1.2.3