Skip to content

Commit 92b4fd8

Browse files
authored
Merge pull request #45 from joneshf/fix-43
Remove attempted re-export of `Prim.Row.Cons`
2 parents 1e4a623 + a7c73aa commit 92b4fd8

File tree

1 file changed

+3
-2
lines changed

1 file changed

+3
-2
lines changed

src/Type/Row.purs

+3-2
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,8 @@ module Type.Row
1212
, type (+)
1313
) where
1414

15-
import Prim.Row (class Lacks, class Nub, class Cons, class Union)
15+
import Prim.Row (class Lacks, class Nub, class Union)
16+
import Prim.Row as Row
1617
import Prim.RowList (kind RowList, Cons, Nil, class RowToList)
1718
import Type.Equality (class TypeEquals)
1819
import Type.Data.Symbol as Symbol
@@ -33,7 +34,7 @@ instance listToRowNil
3334

3435
instance listToCons
3536
:: ( ListToRow tail tailRow
36-
, Cons label ty tailRow row )
37+
, Row.Cons label ty tailRow row )
3738
=> ListToRow (Cons label ty tail) row
3839

3940
-- | Remove all occurences of a given label from a RowList

0 commit comments

Comments
 (0)