Typo fixed (#270)

This commit is contained in:
James Hickey
2025-02-09 00:30:13 -04:00
committed by GitHub
parent 7bea2672a0
commit 3090917a49

View File

@@ -217,7 +217,7 @@ class HtmlConverter(DocumentConverter):
return result
def _convert(self, html_content: str) -> Union[None, DocumentConverterResult]:
"""Helper function that converts and HTML string."""
"""Helper function that converts an HTML string."""
# Parse the string
soup = BeautifulSoup(html_content, "html.parser")