From 04da63bc04489fc87dacaaee595b774ec041facd Mon Sep 17 00:00:00 2001 From: Richard Feldman Date: Thu, 16 Jun 2016 22:08:28 -0700 Subject: [PATCH] Fix some comments and remove extraneous text node - h/t @RebootJeff for pointing these out! --- part2/Main.elm | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) diff --git a/part2/Main.elm b/part2/Main.elm index 3fda197..8bad4aa 100644 --- a/part2/Main.elm +++ b/part2/Main.elm @@ -21,7 +21,7 @@ type alias ResultId = Int -{-| TODO add a type annotation to this function +{-| TODO add a type annotation to this value -} model = { query = "tutorial" @@ -75,11 +75,10 @@ viewSearchResult result = , a [ href ("https://github.com/" ++ result.name), target "_blank" ] [ text result.name ] - , text result.name ] -{-| TODO add a type annotation to this function +{-| TODO add a type annotation to this value -} main = view model