From 338878d7479a47a08935c76eecd443d46f00ee3e Mon Sep 17 00:00:00 2001 From: "tt." Date: Sun, 1 Oct 2017 12:26:38 -0400 Subject: Fix two typos in docs --- doc/source/index.rst | 4 ++-- test-all-versions | 0 2 files changed, 2 insertions(+), 2 deletions(-) mode change 100755 => 100644 test-all-versions diff --git a/doc/source/index.rst b/doc/source/index.rst index e1b73aa..9269385 100644 --- a/doc/source/index.rst +++ b/doc/source/index.rst @@ -1271,7 +1271,7 @@ dictionary and passing the dictionary into ``find_all()`` as the You can't use a keyword argument to search for HTML's 'name' element, because Beautiful Soup uses the ``name`` argument to contain the name of the tag itself. Instead, you can give a value to 'name' in the -``attrs`` argument. +``attrs`` argument:: name_soup = BeautifulSoup('') name_soup.find_all(name="email") @@ -1732,7 +1732,7 @@ Find tags by ID:: soup.select("a#link2") # [Lacie] -Find tags that match any selector from a list of selectors: +Find tags that match any selector from a list of selectors:: soup.select("#link1,#link2") # [Elsie, diff --git a/test-all-versions b/test-all-versions old mode 100755 new mode 100644 -- cgit v1.2.1