aboutsummaryrefslogtreecommitdiff
path: root/aoc-2020-gleam/src/util
diff options
context:
space:
mode:
authorTomasz Chojnacki <tomaszchojnacki2001@gmail.com>2023-02-19 20:42:51 +0100
committerTomasz Chojnacki <tomaszchojnacki2001@gmail.com>2023-02-19 20:42:51 +0100
commitc4372e5b3d64d1b08cf9b00d0845141bbee753f6 (patch)
tree43c410dedf2088730b41079adc9e1b299844c619 /aoc-2020-gleam/src/util
parentc74bb3862190e866a8764bf0781f60b248b64876 (diff)
downloadgleam_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.gleam2
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)