Skip to content

Fix comment typos #75

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 1 commit into from
Sep 28, 2024
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
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