Skip to content

Commit 87f7f22

Browse files
Remove unicode syntax
1 parent 52297b2 commit 87f7f22

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

src/Type/Row.purs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ import Type.Data.Row (RProxy(..)) as RProxy
1414
-- | ```
1515
-- | APPLY Maybe Int == Maybe $ Int == Maybe Int
1616
-- | ```
17-
type APPLY d c . (d c) d c
17+
type APPLY :: forall a b. (a -> b) -> a -> b
1818
type APPLY f a = f a
1919

2020
infixr 0 type APPLY as $
@@ -32,7 +32,7 @@ infixr 0 type APPLY as $
3232
-- | breakage, `# Type` was made an alias to `Row Type`. When the `# Type`
3333
-- | syntax is fully dropped in a later language release, we can then
3434
-- | support the infix version: `Int # Maybe`.
35-
type FLIP d c . d (d c) c
35+
type FLIP :: forall a b. a -> (a -> b) -> b
3636
type FLIP a f = f a
3737

3838
-- | Type application for rows.

0 commit comments

Comments
 (0)