Update String.elm

You had your types swapped.
This commit is contained in:
timthelion 2013-11-07 12:51:40 +01:00
parent 1ed37fee60
commit 2d4d1678c3

View file

@ -307,5 +307,5 @@ something.
fromList ['a','b','c'] == "abc"
-}
fromList : String -> [Char]
fromList : [Char] -> String
fromList = Native.String.fromList