diff --git a/spacy/matcher/matcher.pyi b/spacy/matcher/matcher.pyi index 8fafa3a8f..47659d76f 100644 --- a/spacy/matcher/matcher.pyi +++ b/spacy/matcher/matcher.pyi @@ -54,4 +54,4 @@ class Matcher: ) -> List[Span]: ... def _normalize_key(self, key: Any) -> Any: ... -def fuzzy_compare(s1: str, s2: str, fuzzy: int = -1) -> bool: ... +def fuzzy_compare(input_text: str, pattern_text: str, fuzzy: int = -1) -> bool: ...