From b09cc426fd56b016d543b1c556caf789c4c79969 Mon Sep 17 00:00:00 2001 From: Richard Feldman Date: Tue, 14 Aug 2018 01:48:11 -0400 Subject: [PATCH] Update intro/part2 --- intro/part2/src/Main.elm | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) 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 [] ] ]