elm-lang / elm-make

A build tool for Elm projects
BSD 3-Clause "New" or "Revised" License
175 stars 45 forks source link

Correct typo's in elm-make statement in terminal and get-started page #100

Closed wintvelt closed 8 years ago

wintvelt commented 8 years ago

The official get started page says:

elm make Main.elm --output=index.html

With command missing "-".

Small stuff, but threw me off as first time user (although loving elm so far!)

evancz commented 8 years ago

You can actually call things that way. elm whatever will translate into elm-whatever and call the right thing. We are considering getting rid of this behavior though!

wintvelt commented 8 years ago

Ok thanks for explaining!