rename newModel -> updateModel

This commit is contained in:
Daniel Barlow 2024-11-21 11:34:41 +00:00
parent e0d395ba9f
commit aa36f74762

View File

@ -195,9 +195,9 @@ type Msg
update : Msg -> Model -> (Model, Cmd Msg)
update msg model = (newModel msg model, Cmd.none)
update msg model = (updateModel msg model, Cmd.none)
newModel msg model =
updateModel msg model =
case msg of
MapScale y ->
{ model | zoom = incZoom model.zoom y }