From 5f48f18648aa423c1fdbb9984be7a68b93fa5484 Mon Sep 17 00:00:00 2001 From: Sawyer X Date: Mon, 30 May 2022 16:16:14 +0200 Subject: [PATCH] Correct comment --- lib/Guacamole.pm | 7 +++---- 1 file changed, 3 insertions(+), 4 deletions(-) diff --git a/lib/Guacamole.pm b/lib/Guacamole.pm index 44b56d4..e010ca9 100644 --- a/lib/Guacamole.pm +++ b/lib/Guacamole.pm @@ -2081,10 +2081,9 @@ whitespace ~ [\s]+ :lexeme ~ OpKeywordWarn priority => 1 :lexeme ~ OpKeywordWrite priority => 1 -# This is the only Op that conflicts -# OpInc conflicts with OpUnary -# So when it's both, OpInc wins -# (such as: sort $x + $y +# OpAdd ("+") conflicts with OpUnary ("+") +# So when it's both, OpAdd should win +# (e.g., "sort $x + $y" should be OpAdd, not OpUnary) :lexeme ~ OpAdd priority => 1 };