From 09926dbd014d10609dd4e6655e98039782c9ca10 Mon Sep 17 00:00:00 2001 From: Leonard Richardson Date: Wed, 14 Mar 2012 10:46:27 -0400 Subject: Fixed error in doc. --- doc/source/index.rst | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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 tags whose ``.string`` is "Elsie":: - soup.find_all("a", "Elsie") + soup.find_all("a", text="Elsie") # [Elsie] .. _limit: -- cgit v1.2.3