From 0c818614414cc0b5de348db8e295e8cf64bad2d6 Mon Sep 17 00:00:00 2001 From: Rahul Choudhary Date: Mon, 18 May 2026 22:04:08 +0530 Subject: [PATCH] fix(documentation_provider): correct spelling "redundant" in function name (#3078) --- scripts/documentation_provider.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/scripts/documentation_provider.py b/scripts/documentation_provider.py index 8765a9431..ed4a70e93 100644 --- a/scripts/documentation_provider.py +++ b/scripts/documentation_provider.py @@ -300,7 +300,7 @@ def indent_paragraph(self, p: str, indent: str) -> str: return "\n".join(result) def beautify_method_comment(self, comment: str, indent: str) -> str: - comment = self.filter_out_redudant_python_code_snippets(comment) + comment = self.filter_out_redundant_python_code_snippets(comment) comment = comment.replace("\\", "\\\\") comment = comment.replace('"', '\\"') lines = comment.split("\n") @@ -331,7 +331,7 @@ def beautify_method_comment(self, comment: str, indent: str) -> str: comment = self.indent_paragraph("\n".join(result), indent) return self.resolve_playwright_dev_links(comment) - def filter_out_redudant_python_code_snippets(self, comment: str) -> str: + def filter_out_redundant_python_code_snippets(self, comment: str) -> str: groups = [] current_group = [] lines = comment.split("\n")