Skip to content

Commit

Permalink
Allow for partial type application
Browse files Browse the repository at this point in the history
  • Loading branch information
snoyberg committed Nov 30, 2011
1 parent c2cdd17 commit debb56c
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
4 changes: 2 additions & 2 deletions Data/Attoparsec/ByteString/Internal.hs
Expand Up @@ -83,8 +83,8 @@ import qualified Data.ByteString.Internal as B
import qualified Data.ByteString.Lazy as L
import qualified Data.ByteString.Unsafe as B

type Parser a = T.Parser B.ByteString a
type Result a = IResult B.ByteString a
type Parser = T.Parser B.ByteString
type Result = IResult B.ByteString
type Input = T.Input B.ByteString
type Added = T.Added B.ByteString
type Failure r = T.Failure B.ByteString r
Expand Down
4 changes: 2 additions & 2 deletions Data/Attoparsec/Text/Internal.hs
Expand Up @@ -72,8 +72,8 @@ import qualified Data.Attoparsec.Text.FastSet as Set
import qualified Data.Text as T
import qualified Data.Text.Lazy as L

type Parser a = T.Parser Text a
type Result a = IResult Text a
type Parser = T.Parser Text
type Result = IResult Text
type Input = T.Input Text
type Added = T.Added Text
type Failure r = T.Failure Text r
Expand Down

0 comments on commit debb56c

Please sign in to comment.