rtfeldman / elm-in-action

Resources for the Elm In Action book.
166 stars 33 forks source link

Typo in 8.3.1 #52

Open kantuni opened 3 days ago

kantuni commented 3 days ago
port module PhotoGallery exposing (init, Model, Msg, init, update, view)

should be

port module PhotoGallery exposing (Model, Msg, init, update, view)

Ideally, it should be

port module PhotoGallery exposing (Model, Msg(..), Photo, Status(..), init, initialModel, photoDecoder, update, urlPrefix, view)

for PhotoGalleryTests.elm to work.