Skip to content

Commit ef4a401

Browse files
authored
Merge pull request #47 from purescript/revert-re-export-prim-row-cons
Revert "Remove attempted re-export of `Prim.Row.Cons`"
2 parents 9eb572f + 95ac64c commit ef4a401

File tree

1 file changed

+2
-3
lines changed

1 file changed

+2
-3
lines changed

src/Type/Row.purs

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

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

3534
instance listToCons
3635
:: ( ListToRow tail tailRow
37-
, Row.Cons label ty tailRow row )
36+
, Cons label ty tailRow row )
3837
=> ListToRow (Cons label ty tail) row
3938

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

0 commit comments

Comments
 (0)