Skip to content

Commit

Permalink
Linebreak after error message.
Browse files Browse the repository at this point in the history
  • Loading branch information
athas committed Nov 22, 2023
1 parent 43957fe commit da722a3
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/Futhark/CLI/REPL.hs
Original file line number Diff line number Diff line change
Expand Up @@ -227,7 +227,7 @@ readEvalPrint = do
Right (Right e) -> do
valOrErr <- onExp e
case valOrErr of
Left err -> liftIO $ putDoc err
Left err -> liftIO $ putDocLn err
Right val -> liftIO $ putDocLn $ I.prettyValue val
modify $ \s -> s {futharkiCount = futharkiCount s + 1}
where
Expand Down

0 comments on commit da722a3

Please sign in to comment.