From 8722f857ebf17d6a9911f5a1681b3aa8d675f389 Mon Sep 17 00:00:00 2001 From: Adriane Boyd Date: Mon, 9 Jan 2023 12:57:41 +0100 Subject: [PATCH] Fix typo Co-authored-by: Sofie Van Landeghem --- spacy/matcher/matcher.pyx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/spacy/matcher/matcher.pyx b/spacy/matcher/matcher.pyx index bea7e67cd..9e4789cbe 100644 --- a/spacy/matcher/matcher.pyx +++ b/spacy/matcher/matcher.pyx @@ -1089,7 +1089,7 @@ def _get_extra_predicates_dict(attr, value_dict, vocab, predicate_types, continue predicate = cls(len(extra_predicates), attr, value, type_, vocab=vocab, regex=regex, fuzzy=fuzzy, fuzzy_compare=fuzzy_compare) - # Don't create a redundant predicates. + # Don't create redundant predicates. # This helps with efficiency, as we're caching the results. if predicate.key in seen_predicates: output.append(seen_predicates[predicate.key])