diff options
author | Leonard Richardson <leonardr@segfault.org> | 2015-11-24 07:36:36 -0500 |
---|---|---|
committer | Leonard Richardson <leonardr@segfault.org> | 2015-11-24 07:36:36 -0500 |
commit | 39aa1d181f9d097dc184c32551a9d0478d5b3149 (patch) | |
tree | e4409e6a45ce3c6dd9f33d70bce9e703033a9a88 /doc/source/index.rst | |
parent | a657e2ba894e7c95463314ed2b179e1b61b64347 (diff) | |
parent | ee905dab662c2bc3ad136404e3c74adf0511f84c (diff) |
Fixed a typo in the documentation, fixed by Gene Wood.
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:: |