diff --git a/examples/gui/breakout/breakout.roc b/examples/gui/breakout/breakout.roc index 3f4ad03e2d..649722acb9 100644 --- a/examples/gui/breakout/breakout.roc +++ b/examples/gui/breakout/breakout.roc @@ -95,7 +95,7 @@ render : Model -> List Elem render = \model -> blocks = List.map - (List.range {start: At 0, end: Length numBlocks}) + (List.range { start: At 0, end: Length numBlocks }) \index -> col = Num.rem index numCols diff --git a/examples/parser/Parser/Str.roc b/examples/parser/Parser/Str.roc index ad2ecf6c6a..f38be64d70 100644 --- a/examples/parser/Parser/Str.roc +++ b/examples/parser/Parser/Str.roc @@ -177,7 +177,7 @@ anyString = buildPrimitiveParser \fieldRawString -> digit : Parser RawStr U8 digit = digitParsers = - List.range {start: At '0', end: At '9'} + List.range { start: At '0', end: At '9' } |> List.map \digitNum -> digitNum |> codeunit