diff options
author | Gene Wood <gene_wood@cementhorizon.com> | 2015-11-23 21:00:11 -0800 |
---|---|---|
committer | Gene Wood <gene_wood@cementhorizon.com> | 2015-11-23 21:00:11 -0800 |
commit | ee905dab662c2bc3ad136404e3c74adf0511f84c (patch) | |
tree | e4409e6a45ce3c6dd9f33d70bce9e703033a9a88 /doc/source/index.rst | |
parent | a657e2ba894e7c95463314ed2b179e1b61b64347 (diff) |
Fixing typo in example of nth-of-type css selector
Diffstat (limited to 'doc/source/index.rst')
-rw-r--r-- | doc/source/index.rst | 2 |
1 files changed, 1 insertions, 1 deletions
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") # [<title>The Dormouse's story</title>] - soup.select("p nth-of-type(3)") + soup.select("p:nth-of-type(3)") # [<p class="story">...</p>] Find tags beneath other tags:: |