Skip to content

Commit 768c4e1

Browse files
Fix compiler warnings
1 parent 53e0bff commit 768c4e1

File tree

4 files changed

+4
-4
lines changed

4 files changed

+4
-4
lines changed

src/Type/Prelude.purs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ module Type.Prelude
99
) where
1010

1111
import Type.Data.Boolean (True, False, BProxy(..), class IsBoolean, reflectBoolean, reifyBoolean)
12-
import Type.Data.Ordering (kind Ordering, LT, EQ, GT, OProxy(..), class IsOrdering, reflectOrdering, reifyOrdering)
12+
import Type.Data.Ordering (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)

src/Type/Row.purs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@ infixr 0 type APPLY as $
2626
-- | FLIP Int Maybe == Maybe Int
2727
-- | ```
2828
-- | Note: an infix for FLIP (e.g. `Int # Maybe`) is not allowed since
29-
-- | `# Type` is an alias for `Row Type`
29+
-- | `Row Type` is an alias for `Row Type`
3030
type FLIP d c . d (d c) c
3131
type FLIP a f = f a
3232

src/Type/Row/Homogeneous.purs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ module Type.Row.Homogeneous
44
) where
55

66
import Type.Equality (class TypeEquals)
7-
import Type.RowList (class RowToList, Cons, Nil, kind RowList)
7+
import Type.RowList (class RowToList, Cons, Nil, RowList)
88

99
-- | Ensure that every field in a row has the same type.
1010
class Homogeneous :: forall k. Row k -> k -> Constraint

src/Type/RowList.purs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ module Type.RowList
99
) where
1010

1111
import Prim.Row as Row
12-
import Prim.RowList (kind RowList, Cons, Nil, class RowToList)
12+
import Prim.RowList (RowList, Cons, Nil, class RowToList)
1313
import Type.Equality (class TypeEquals)
1414
import Type.Data.Symbol as Symbol
1515
import Type.Data.Boolean as Boolean

0 commit comments

Comments
 (0)