From 300a24b1f7d20af1956b7cec419d25c1c032d751 Mon Sep 17 00:00:00 2001 From: nkh0472 <67589323+nkh0472@users.noreply.github.com> Date: Sat, 26 Apr 2025 17:05:35 +0800 Subject: [PATCH] chore: typo fix Signed-off-by: nkh0472 <67589323+nkh0472@users.noreply.github.com> --- docling/backend/msword_backend.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docling/backend/msword_backend.py b/docling/backend/msword_backend.py index a108361c..f1362220 100644 --- a/docling/backend/msword_backend.py +++ b/docling/backend/msword_backend.py @@ -436,7 +436,7 @@ class MsWordDocumentBackend(DeclarativeDocumentBackend): # Common styles for bullet and numbered lists. # "List Bullet", "List Number", "List Paragraph" - # Identify wether list is a numbered list or not + # Identify whether list is a numbered list or not # is_numbered = "List Bullet" not in paragraph.style.name is_numbered = False p_style_id, p_level = self._get_label_and_level(paragraph)