Skip to content

Commit c932361

Browse files
authored
Merge pull request #206 from JordanMartinez/master
Make purescript-prelude library compile on PS polykinds branch
2 parents e3504b2 + 72ced89 commit c932361

File tree

2 files changed

+3
-5
lines changed

2 files changed

+3
-5
lines changed

src/Type/Data/Row.purs

+1-1
Original file line numberDiff line numberDiff line change
@@ -16,5 +16,5 @@ module Type.Data.Row where
1616
-- | { x :: Int, y :: Int } -> { x :: Int, y :: Int }
1717
-- | ```
1818
-- | Here `row` has been specialised to `( x :: Int, y :: Int )`.
19-
data RProxy (row :: # Type)
19+
data RProxy (row :: Row Type)
2020
= RProxy

src/Type/Data/RowList.purs

+2-4
Original file line numberDiff line numberDiff line change
@@ -2,8 +2,6 @@ module Type.Data.RowList where
22

33
import Prim.RowList (kind RowList)
44

5-
-- | A proxy data type whose type parameter is a type of kind `RowList`.
6-
-- |
7-
-- | Commonly used for specialising a function with a quantified type.
8-
data RLProxy (rowlist :: RowList)
5+
-- | A proxy to carry information about a rowlist.
6+
data RLProxy (rowlist :: RowList Type)
97
= RLProxy

0 commit comments

Comments
 (0)