evancz / guide.elm-lang.org

My book introducing you to Elm!
https://guide.elm-lang.org/
Other
321 stars 186 forks source link

Different code in the guide and online editor #129

Closed jozo closed 6 years ago

jozo commented 6 years ago

There are small differences between the examples in the text of the guide and in online editor.

Example: https://guide.elm-lang.org/architecture/user_input/buttons.html

-- MODEL

type alias Model = Int

model : Model
model =
  0

http://elm-lang.org/examples/buttons

-- MODEL

model = 0

Not a big problem, but it would be nice to have it in sync.

evancz commented 6 years ago

With the new version of book, the examples in the editor match the book exactly.