Update String.elm

Super minor typo
This commit is contained in:
Benjamin Kovach 2014-02-19 11:12:08 -05:00
parent a5ee99d646
commit ed8089a60c

View file

@ -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