From 8392721f935321d88d82f6d06209e6d567975c5e Mon Sep 17 00:00:00 2001 From: James Hickey Date: Wed, 8 Jan 2025 17:53:06 -0400 Subject: [PATCH] Typo fixed --- 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 33806e1..b343715 100644 --- a/src/markitdown/_markitdown.py +++ b/src/markitdown/_markitdown.py @@ -204,7 +204,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")