Repository : ssh://darcs.haskell.org//srv/darcs/ghc On branch : master
http://hackage.haskell.org/trac/ghc/changeset/f438722414782adfb9800b574ec8a1d7d5eafbbf >--------------------------------------------------------------- commit f438722414782adfb9800b574ec8a1d7d5eafbbf Author: Ian Lynagh <[email protected]> Date: Tue Jan 24 19:09:10 2012 +0000 Add a missing newline in the ghci :h text; spotted by Alexander McPhail >--------------------------------------------------------------- ghc/InteractiveUI.hs | 2 +- 1 files changed, 1 insertions(+), 1 deletions(-) diff --git a/ghc/InteractiveUI.hs b/ghc/InteractiveUI.hs index 1d243be..1836087 100644 --- a/ghc/InteractiveUI.hs +++ b/ghc/InteractiveUI.hs @@ -220,7 +220,7 @@ helpText = " :quit exit GHCi\n" ++ " :reload reload the current module set\n" ++ " :run function [<arguments> ...] run the function with the given arguments\n" ++ - " :script <filename> run the script <filename>" ++ + " :script <filename> run the script <filename>\n" ++ " :type <expr> show the type of <expr>\n" ++ " :undef <cmd> undefine user-defined command :<cmd>\n" ++ " :!<command> run the shell command <command>\n" ++ _______________________________________________ Cvs-ghc mailing list [email protected] http://www.haskell.org/mailman/listinfo/cvs-ghc
