diff --git a/intro/part2/src/Main.elm b/intro/part2/src/Main.elm index ae945aa..aa164df 100644 --- a/intro/part2/src/Main.elm +++ b/intro/part2/src/Main.elm @@ -7,14 +7,14 @@ import Html.Attributes exposing (..) viewTags tags = let renderedTags = - -- 👉 TODO use `List.map` and `viewTag` to render the tags + -- 👉 TODO: use `List.map` and `viewTag` to render the tags [] in div [ class "tag-list" ] renderedTags viewTag tagName = - {- 👉 TODO render something like this: + {- 👉 TODO: render something like this: -} @@ -35,7 +35,7 @@ main = [ div [ class "sidebar" ] [ p [] [ text "Popular Tags" ] - -- 👉 TODO instead of passing [] to viewTags, pass the actual tags + -- 👉 TODO: instead of passing [] to viewTags, pass the actual tags , viewTags [] ] ]