summaryrefslogtreecommitdiff
path: root/doc/source
diff options
context:
space:
mode:
authorLeonard Richardson <leonard.richardson@canonical.com>2012-03-14 10:46:27 -0400
committerLeonard Richardson <leonard.richardson@canonical.com>2012-03-14 10:46:27 -0400
commit09926dbd014d10609dd4e6655e98039782c9ca10 (patch)
treee888315a01e13934890372662f9864a26d36f005 /doc/source
parent1581d166793baf94eb04089d9980deb061cd9467 (diff)
Fixed error in doc.
Diffstat (limited to 'doc/source')
-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 37d5f07..fbc1f4a 100644
--- a/doc/source/index.rst
+++ b/doc/source/index.rst
@@ -1248,7 +1248,7 @@ arguments for finding tags, Beautiful Soup will find all tags whose
``.string`` matches your value for ``text``. This code finds the <a>
tags whose ``.string`` is "Elsie"::
- soup.find_all("a", "Elsie")
+ soup.find_all("a", text="Elsie")
# [<a href="http://example.com/elsie" class="sister" id="link1">Elsie</a>]
.. _limit: