Skip to content

Commit

Permalink
clarify what is meant with tuples
Browse files Browse the repository at this point in the history
  • Loading branch information
lue-bird committed Sep 10, 2024
1 parent 7a1be94 commit 09c9b69
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,12 +2,12 @@

## [Unreleased]

- The parser is stricter in a few cases where code that was incorrect (according to the Elm compiler) was successfully parsed: tuple patterns and type annotations with more than 3 elements, non-associative operators (so no more `a < b < c`), lambda indentation
- The parser is stricter in a few cases where code that was incorrect (according to the Elm compiler) was successfully parsed: tuple patterns and tuple type annotations with more than 3 parts, non-associative operators (so no more `a < b < c`), lambda indentation
- The parser removes incorrect failures with specific operator combinations like `a + b /= 0` due to specifics of the pratt parser

## [7.3.5] - 2024-08-30

- The parser is stricter in a few cases where code that was incorrect (according to the Elm compiler) was successfully parsed: tuples with more than 3 elements, and record access on most things
- The parser is stricter in a few cases where code that was incorrect (according to the Elm compiler) was successfully parsed: tuple expressions with more than 3 parts, and record access on most things
- Parsing is about 6 times faster than the previous release!

## [7.3.4] - 2024-07-26
Expand Down

0 comments on commit 09c9b69

Please sign in to comment.