From 5fd5863b532fd6a52fe9c6c5923fbda87392d7e8 Mon Sep 17 00:00:00 2001 From: Richard Feldman Date: Thu, 1 Sep 2016 08:00:33 -0700 Subject: [PATCH] Say initialModel instead of model --- part2/Main.elm | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/part2/Main.elm b/part2/Main.elm index 604c950..9bf0b12 100644 --- a/part2/Main.elm +++ b/part2/Main.elm @@ -4,7 +4,7 @@ import Html exposing (..) import Html.Attributes exposing (..) -model = +initialModel = { result = { id = 1 , name = "TheSeamau5/elm-checkerboardgrid-tutorial" @@ -35,4 +35,4 @@ view model = main = - view model + view initialModel