File tree 3 files changed +3
-3
lines changed 3 files changed +3
-3
lines changed Original file line number Diff line number Diff line change 27
27
"purescript-identity" : " ^0.4.0" ,
28
28
"purescript-maybe" : " ^0.3.0" ,
29
29
"purescript-arrays" : " ^0.4.0" ,
30
- "purescript-strings" : " ^0.5 .0" ,
30
+ "purescript-strings" : " ^0.6 .0" ,
31
31
"purescript-foldable-traversable" : " ^0.4.0" ,
32
32
"purescript-lists" : " ^0.7.0"
33
33
},
Original file line number Diff line number Diff line change @@ -9,7 +9,7 @@ import Data.Either
9
9
import Data.Foldable
10
10
import Data.Monoid
11
11
import Data.Maybe
12
- import Data.Char
12
+ import Data.Char ( toString )
13
13
import Data.Array (many )
14
14
import Data.List (List (..), (:), fromList )
15
15
Original file line number Diff line number Diff line change @@ -34,4 +34,4 @@ when tokpos f = try $ do
34
34
35
35
-- | Match the specified token at the head of the stream.
36
36
match :: forall a m . (Monad m , Eq a ) => (a -> Position ) -> a -> ParserT (List a ) m a
37
- match tokpos token = when tokpos (== token )
37
+ match tokpos tok = when tokpos (== tok )
You can’t perform that action at this time.
0 commit comments