Skip to content

Commit b2df23a

Browse files
Restyled by fourmolu
1 parent 5392a96 commit b2df23a

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/Swarm/Game/Step.hs

+1-1
Original file line numberDiff line numberDiff line change
@@ -1371,7 +1371,7 @@ execConst c vs s k = do
13711371
[VBool b] -> return $ Out (VBool (not b)) s k
13721372
_ -> badConst
13731373
Neg -> case vs of
1374-
[VInt n] -> return $ Out (VInt (-n)) s k
1374+
[VInt n] -> return $ Out (VInt (- n)) s k
13751375
_ -> badConst
13761376
Eq -> returnEvalCmp
13771377
Neq -> returnEvalCmp

0 commit comments

Comments
 (0)