;run: fix typo in the REPL help message

This commit is contained in:
Dmitry Astapov 2025-02-26 11:02:11 +00:00 committed by Simon Michael
parent cf05ccb8e4
commit a76d23957f

View File

@ -122,7 +122,7 @@ runCommand findBuiltinCommand cmdline = do
-- | Run an interactive REPL.
runREPL :: (String -> Maybe (Mode RawOpts, CliOpts -> Journal -> IO ())) -> IO ()
runREPL findBuiltinCommand = do
putStrLn "Enter hledger commands, or 'quit' for help."
putStrLn "Enter hledger commands. To exit, enter 'quit' or 'exit', or send EOF."
runInputT defaultSettings loop
where
loop :: InputT IO ()