summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorLeonard Richardson <leonardr@segfault.org>2015-11-24 07:36:36 -0500
committerLeonard Richardson <leonardr@segfault.org>2015-11-24 07:36:36 -0500
commit218fb845adb7bbc1ad079d7668255ded890b63c4 (patch)
tree396bac7686cdf8f8b8db71dad5fb289b6346b5de
parent911eafd169bb2537669e44000c77a5dc86a752e5 (diff)
parent490184ad2b889b1fa5d6301a179ab82927572d29 (diff)
downloadbeautifulsoup4-218fb845adb7bbc1ad079d7668255ded890b63c4.tar.gz
Fixed a typo in the documentation, fixed by Gene Wood.
-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::