Skip to content

Commit

Permalink
Correct comment
Browse files Browse the repository at this point in the history
  • Loading branch information
xsawyerx committed May 30, 2022
1 parent 5012274 commit 5f48f18
Showing 1 changed file with 3 additions and 4 deletions.
7 changes: 3 additions & 4 deletions lib/Guacamole.pm
Original file line number Diff line number Diff line change
Expand Up @@ -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
};
Expand Down

0 comments on commit 5f48f18

Please sign in to comment.