Skip to content

Commit 4907b39

Browse files
committed
Re-add re-exports of Ordering and Boolean
Fixes #55. This re-adds the re-exports of the Ordering and Boolean kinds to the module `Type.Prelude`, as they were erroneously removed due to an incorrect compiler warning.
1 parent 6792c6c commit 4907b39

1 file changed

Lines changed: 2 additions & 2 deletions

File tree

src/Type/Prelude.purs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -8,8 +8,8 @@ module Type.Prelude
88
, module Type.RowList
99
) where
1010

11-
import Type.Data.Boolean (True, False, BProxy(..), class IsBoolean, reflectBoolean, reifyBoolean)
12-
import Type.Data.Ordering (LT, EQ, GT, OProxy(..), class IsOrdering, reflectOrdering, reifyOrdering)
11+
import Type.Data.Boolean (kind Boolean, True, False, BProxy(..), class IsBoolean, reflectBoolean, reifyBoolean)
12+
import Type.Data.Ordering (kind Ordering, LT, EQ, GT, OProxy(..), class IsOrdering, reflectOrdering, reifyOrdering)
1313
import Type.Proxy (Proxy(..))
1414
import Type.Data.Symbol (SProxy(..), class IsSymbol, reflectSymbol, reifySymbol, class Compare, compare, class Append, append)
1515
import Type.Equality (class TypeEquals, from, to)

0 commit comments

Comments
 (0)