diff options
author | Leonard Richardson <leonardr@segfault.org> | 2023-01-29 10:37:49 -0500 |
---|---|---|
committer | Leonard Richardson <leonardr@segfault.org> | 2023-01-29 10:37:49 -0500 |
commit | 0cdcc79fb1332d6f7ac2b085ec654adfef50ac86 (patch) | |
tree | 3ab16017e9fc88aa34a3afede5718d9f448383b3 /bs4/tests/test_soup.py | |
parent | bd3c7492d81440597d2a82cf6265bb68b53f1b84 (diff) |
Reworded the 'multi-valued attributes' portion of the documentation to make it more clear. [bug=1970767]
Diffstat (limited to 'bs4/tests/test_soup.py')
-rw-r--r-- | bs4/tests/test_soup.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/bs4/tests/test_soup.py b/bs4/tests/test_soup.py index 00587d4..857f1f4 100644 --- a/bs4/tests/test_soup.py +++ b/bs4/tests/test_soup.py @@ -139,7 +139,7 @@ class TestConstructor(SoupTest): assert " an id " == a['id'] assert ["a", "class"] == a['class'] - # TreeBuilder takes an argument called 'mutli_valued_attributes' which lets + # TreeBuilder takes an argument called 'multi_valued_attributes' which lets # you customize or disable this. As always, you can customize the TreeBuilder # by passing in a keyword argument to the BeautifulSoup constructor. soup = self.soup(markup, builder=default_builder, multi_valued_attributes=None) |