From 8363b28e634cb4081688a41e690ee17ec6fbadd1 Mon Sep 17 00:00:00 2001 From: Josh Soref <2119212+jsoref@users.noreply.github.com> Date: Mon, 8 Aug 2022 23:31:36 -0400 Subject: [PATCH] spelling: receives Signed-off-by: Josh Soref <2119212+jsoref@users.noreply.github.com> --- data/rule/rule.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/data/rule/rule.go b/data/rule/rule.go index 5651d67..7dc13bc 100644 --- a/data/rule/rule.go +++ b/data/rule/rule.go @@ -40,7 +40,7 @@ type or struct { } // Or rule matches, if a single matching pattern exists. -// It recives only one pattern as it relies on compile-time optimization that +// It receives only one pattern as it relies on compile-time optimization that // represtes union with | inside a single regexp. func Or(l languages, r Matcher) Heuristic { return or{l, r}