From 3090917a49dc8ec94682c47747f3e2692e3953ae Mon Sep 17 00:00:00 2001 From: James Hickey Date: Sun, 9 Feb 2025 00:30:13 -0400 Subject: [PATCH] Typo fixed (#270) --- src/markitdown/_markitdown.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/markitdown/_markitdown.py b/src/markitdown/_markitdown.py index 6f40547..e4884ec 100644 --- a/src/markitdown/_markitdown.py +++ b/src/markitdown/_markitdown.py @@ -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")