Skip to content
This repository was archived by the owner on Apr 1, 2025. It is now read-only.

Commit 3cdfe55

Browse files
author
Patrick Thomson
committed
Unnecessary use of &.
1 parent eefb1d5 commit 3cdfe55

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/Semantic/Task.hs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -234,7 +234,7 @@ instance (Member (Error SomeException) sig, Member (Lift IO) sig, Member (Reader
234234
eff (L op) = case op of
235235
Parse parser blob k -> runParser blob parser >>= k
236236
Decorate algebra term k -> k (decoratorWithAlgebra algebra term)
237-
Semantic.Task.Diff terms k -> diffTermPair terms & k
237+
Semantic.Task.Diff terms k -> k (diffTermPair terms)
238238
Render renderer input k -> k (renderer input)
239239
Serialize format input k -> do
240240
formatStyle <- asks (Flag.choose IsTerminal Plain Colourful . configIsTerminal . config)

0 commit comments

Comments
 (0)