Merge pull request #504 from 5outh/master

Tiny typo in String.elm
This commit is contained in:
Evan Czaplicki 2014-02-19 20:09:05 -05:00
commit 7920a4f3af
2 changed files with 2 additions and 2 deletions

View file

@ -10,7 +10,7 @@ list must have the same type.
@docs head, tail, last, filter, take, drop @docs head, tail, last, filter, take, drop
# Putting Lists Together # Putting Lists Together
@docs concat, concatMap, join, intersperse, zip, zipWith @docs concat, concatMap, join, intersperse, zip, zipWith, repeat
# Taking Lists Apart # Taking Lists Apart
@docs partition, unzip @docs partition, unzip

View file

@ -233,7 +233,7 @@ any = Native.String.any
all isDigit "90210" == True all isDigit "90210" == True
all isDigit "R2-D2" == False all isDigit "R2-D2" == False
any isDigit "heart" == False all isDigit "heart" == False
-} -}
all : (Char -> Bool) -> String -> Bool all : (Char -> Bool) -> String -> Bool
all = Native.String.all all = Native.String.all