From 8165b61636edb573465beba34511e78f4410ff03 Mon Sep 17 00:00:00 2001 From: Harry Marr Date: Wed, 9 Mar 2022 15:48:52 -0500 Subject: [PATCH] Fix typo in comment --- parse.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/parse.go b/parse.go index 6ecbfcf..37ce0d7 100644 --- a/parse.go +++ b/parse.go @@ -63,7 +63,7 @@ func parseRule(ruleStr string) (Rule, error) { switch { case ch == '\\': // Escape the next character (important for whitespace while parsing), but - // don't lose the backslash we it's part of the pattern + // don't lose the backslash as it's part of the pattern escaped = true buf.WriteRune(ch) continue