Skip to content

Commit

Permalink
Merge pull request #407 from gramlang/comment-wordsmithing
Browse files Browse the repository at this point in the history
Wordsmith a comment
  • Loading branch information
stepchowfun authored Jul 24, 2023
2 parents 78de747 + c09fb3b commit ab28efe
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions grammar.y
Original file line number Diff line number Diff line change
Expand Up @@ -3,9 +3,9 @@
generated parser isn't used. Instead, we use the hand-written packrat parser in `src/parser.rs`
for better control over error messages.
Traditionally left-associative binary operations such as application and subtraction are encoded
as right-associative in this grammar to avoid left-recursion, since packrat parsers can't handle
left-recursion. These operations are reassociated to the left in a post-processing step.
Left-associative binary operations such as application and subtraction are encoded as right-
associative in this grammar to avoid left-recursion, since packrat parsers can't handle left-
recursion. These operations are reassociated to the left in a post-processing step.
*/

/*
Expand Down

0 comments on commit ab28efe

Please sign in to comment.