summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorGene Wood <gene_wood@cementhorizon.com>2015-11-23 21:00:11 -0800
committerGene Wood <gene_wood@cementhorizon.com>2015-11-23 21:00:11 -0800
commitee905dab662c2bc3ad136404e3c74adf0511f84c (patch)
treee4409e6a45ce3c6dd9f33d70bce9e703033a9a88
parenta657e2ba894e7c95463314ed2b179e1b61b64347 (diff)
Fixing typo in example of nth-of-type css selector
-rw-r--r--doc/source/index.rst2
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::