Skip to content

Commit b5c7648

Browse files
committed
Bump dependencies
1 parent 4ff5ff0 commit b5c7648

File tree

3 files changed

+3
-3
lines changed

3 files changed

+3
-3
lines changed

bower.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,7 @@
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
},

src/Text/Parsing/Parser/String.purs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ import Data.Either
99
import Data.Foldable
1010
import Data.Monoid
1111
import Data.Maybe
12-
import Data.Char
12+
import Data.Char (toString)
1313
import Data.Array (many)
1414
import Data.List (List(..), (:), fromList)
1515

src/Text/Parsing/Parser/Token.purs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -34,4 +34,4 @@ when tokpos f = try $ do
3434

3535
-- | Match the specified token at the head of the stream.
3636
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)

0 commit comments

Comments
 (0)