We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent e3504b2 commit 72ced89Copy full SHA for 72ced89
src/Type/Data/Row.purs
@@ -16,5 +16,5 @@ module Type.Data.Row where
16
-- | { x :: Int, y :: Int } -> { x :: Int, y :: Int }
17
-- | ```
18
-- | Here `row` has been specialised to `( x :: Int, y :: Int )`.
19
-data RProxy (row :: # Type)
+data RProxy (row :: Row Type)
20
= RProxy
src/Type/Data/RowList.purs
@@ -2,8 +2,6 @@ module Type.Data.RowList where
2
3
import Prim.RowList (kind RowList)
4
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)
+-- | A proxy to carry information about a rowlist.
+data RLProxy (rowlist :: RowList Type)
9
= RLProxy
0 commit comments