File tree Expand file tree Collapse file tree 3 files changed +3
-3
lines changed Expand file tree Collapse file tree 3 files changed +3
-3
lines changed Original file line number Diff line number Diff line change 2727 "purescript-identity" : " ^0.4.0" ,
2828 "purescript-maybe" : " ^0.3.0" ,
2929 "purescript-arrays" : " ^0.4.0" ,
30- "purescript-strings" : " ^0.5 .0" ,
30+ "purescript-strings" : " ^0.6 .0" ,
3131 "purescript-foldable-traversable" : " ^0.4.0" ,
3232 "purescript-lists" : " ^0.7.0"
3333 },
Original file line number Diff line number Diff line change @@ -9,7 +9,7 @@ import Data.Either
99import Data.Foldable
1010import Data.Monoid
1111import Data.Maybe
12- import Data.Char
12+ import Data.Char ( toString )
1313import Data.Array (many )
1414import Data.List (List (..), (:), fromList )
1515
Original file line number Diff line number Diff line change @@ -34,4 +34,4 @@ when tokpos f = try $ do
3434
3535-- | Match the specified token at the head of the stream.
3636match :: 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