Skip to content
Closed
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 compiler/src/Reporting/Error/Type.hs
Original file line number Diff line number Diff line change
Expand Up @@ -1072,7 +1072,7 @@ opRightToDocs localizer category op tipe expected =
( D.reflow $ "I cannot send this through the (<|) pipe:"
, typeComparison localizer tipe expected
"The argument is:"
"But (<|) is piping it a function that expects:"
"But (<|) is piping it to a function that expects:"
[]
)

Expand All @@ -1083,7 +1083,7 @@ opRightToDocs localizer category op tipe expected =
( D.reflow $ "This function cannot handle the argument sent through the (|>) pipe:"
, typeComparison localizer argType expectedArgType
"The argument is:"
"But (|>) is piping it a function that expects:"
"But (|>) is piping it to a function that expects:"
[]
)

Expand Down