From: Pepe Iborra Date: Thu, 11 Jan 2007 11:17:42 +0000 (+0000) Subject: Fix some text in the GHCi help message that was going over 80 columns X-Git-Url: http://git.megacz.com/?p=ghc-hetmet.git;a=commitdiff_plain;h=4c61d9effc9117497cd59a050856c01d8bbf24aa Fix some text in the GHCi help message that was going over 80 columns --- diff --git a/compiler/ghci/InteractiveUI.hs b/compiler/ghci/InteractiveUI.hs index daf1185..3fbdcbe 100644 --- a/compiler/ghci/InteractiveUI.hs +++ b/compiler/ghci/InteractiveUI.hs @@ -175,7 +175,7 @@ helpText = " :help, :? display this list of commands\n" ++ " :info [ ...] display information about the given names\n" ++ " :print [ ...] prints a value without forcing its computation\n" ++ - " :sprint [ ...] prints a value without forcing its computation(simpler)\n" ++ + " :sprint [ ...] simplified version of :print\n" ++ " :load ... load module(s) and their dependents\n" ++ " :module [+/-] [*] ... set the context for expression evaluation\n" ++ " :main [ ...] run the main function with the given arguments\n" ++