From b7a45f650dd0bbfc48e080ad10054d51d766395b Mon Sep 17 00:00:00 2001 From: pseudonom Date: Wed, 19 Feb 2014 00:41:44 -0500 Subject: [PATCH 1/2] Docs were missing `repeat` --- libraries/List.elm | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/libraries/List.elm b/libraries/List.elm index 0554486..1bb0967 100644 --- a/libraries/List.elm +++ b/libraries/List.elm @@ -10,7 +10,7 @@ list must have the same type. @docs head, tail, last, filter, take, drop # Putting Lists Together -@docs concat, concatMap, join, intersperse, zip, zipWith +@docs concat, concatMap, join, intersperse, zip, zipWith, repeat # Taking Lists Apart @docs partition, unzip From ed8089a60cf14f2650f2349497c99064fd4daa5c Mon Sep 17 00:00:00 2001 From: Benjamin Kovach Date: Wed, 19 Feb 2014 11:12:08 -0500 Subject: [PATCH 2/2] Update String.elm Super minor typo --- libraries/String.elm | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/libraries/String.elm b/libraries/String.elm index 00f5778..f20963a 100644 --- a/libraries/String.elm +++ b/libraries/String.elm @@ -231,7 +231,7 @@ any = Native.String.any all isDigit "90210" == True all isDigit "R2-D2" == False - any isDigit "heart" == False + all isDigit "heart" == False -} all : (Char -> Bool) -> String -> Bool all = Native.String.all