Skip to content

Commit

Permalink
Fix comment typos (#75)
Browse files Browse the repository at this point in the history
  • Loading branch information
i-am-the-slime authored Sep 28, 2024
1 parent dca2fe3 commit 318ef84
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/Type/RowList.purs
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@ instance listToRowCons
, Row.Cons label ty tailRow row )
=> ListToRow (Cons label ty tail) row

-- | Remove all occurences of a given label from a RowList
-- | Remove all occurrences of a given label from a RowList
class RowListRemove :: forall k. Symbol -> RowList k -> RowList k -> Constraint
class RowListRemove label input output | label input -> output

Expand All @@ -43,7 +43,7 @@ instance rowListRemoveCons
)
=> RowListRemove label (Cons key head tail) output

-- | Add a label to a RowList after removing other occurences.
-- | Add a label to a RowList after removing other occurrences.
class RowListSet :: forall k. Symbol -> k -> RowList k -> RowList k -> Constraint
class RowListSet label typ input output | label typ input -> output

Expand Down

0 comments on commit 318ef84

Please sign in to comment.