Skip to content

Commit a97379e

Browse files
authored
Merge pull request #27 from matthewleon/homogeneous-sp
make Homogeneous spelling consistent
2 parents 8a072ba + ca6f65a commit a97379e

File tree

1 file changed

+7
-7
lines changed

1 file changed

+7
-7
lines changed

src/Type/Row/Homogeneous.purs

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
module Type.Row.Homogeneous
22
( class Homogeneous
3-
, class HomogenousRowList
3+
, class HomogeneousRowList
44
) where
55

66
import Type.Equality (class TypeEquals)
@@ -10,12 +10,12 @@ import Type.Row (class RowToList, Cons, Nil, kind RowList)
1010
class Homogeneous (row :: # Type) fieldType | row -> fieldType
1111
instance homogeneous
1212
:: ( RowToList row fields
13-
, HomogenousRowList fields fieldType )
13+
, HomogeneousRowList fields fieldType )
1414
=> Homogeneous row fieldType
1515

16-
class HomogenousRowList (rowList :: RowList) fieldType | rowList -> fieldType
17-
instance homogenousRowListCons
18-
:: ( HomogenousRowList tail fieldType
16+
class HomogeneousRowList (rowList :: RowList) fieldType | rowList -> fieldType
17+
instance homogeneousRowListCons
18+
:: ( HomogeneousRowList tail fieldType
1919
, TypeEquals fieldType fieldType2 )
20-
=> HomogenousRowList (Cons symbol fieldType tail) fieldType2
21-
instance homogenousRowListNil :: HomogenousRowList Nil fieldType
20+
=> HomogeneousRowList (Cons symbol fieldType tail) fieldType2
21+
instance homogeneousRowListNil :: HomogeneousRowList Nil fieldType

0 commit comments

Comments
 (0)