diff options
author | Tomasz Chojnacki <tomaszchojnacki2001@gmail.com> | 2023-02-19 20:42:51 +0100 |
---|---|---|
committer | Tomasz Chojnacki <tomaszchojnacki2001@gmail.com> | 2023-02-19 20:42:51 +0100 |
commit | c4372e5b3d64d1b08cf9b00d0845141bbee753f6 (patch) | |
tree | 43c410dedf2088730b41079adc9e1b299844c619 /aoc-2020-gleam/src/util | |
parent | c74bb3862190e866a8764bf0781f60b248b64876 (diff) | |
download | gleam_aoc2020-c4372e5b3d64d1b08cf9b00d0845141bbee753f6.tar.gz gleam_aoc2020-c4372e5b3d64d1b08cf9b00d0845141bbee753f6.zip |
Finish day 3
Diffstat (limited to 'aoc-2020-gleam/src/util')
-rw-r--r-- | aoc-2020-gleam/src/util/parser.gleam | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/aoc-2020-gleam/src/util/parser.gleam b/aoc-2020-gleam/src/util/parser.gleam index d6e35d5..cad8b35 100644 --- a/aoc-2020-gleam/src/util/parser.gleam +++ b/aoc-2020-gleam/src/util/parser.gleam @@ -7,7 +7,7 @@ import ext/intx // Heavily inspired by https://fsharpforfunandprofit.com/posts/understanding-parser-combinators/ -const eof: String = "end of input" +const eof = "end of input" pub type ParseError { InvalidInput(expected: String, found: String) |