Repository : ssh://[email protected]/ghc On branch : master Link : http://ghc.haskell.org/trac/ghc/changeset/99b58a6a9ec41f9f193df338338f118603a0d9b1/ghc
>--------------------------------------------------------------- commit 99b58a6a9ec41f9f193df338338f118603a0d9b1 Author: Reid Barton <[email protected]> Date: Wed Aug 28 23:00:47 2013 -0400 Document :kind! in ghci built-in help Signed-off-by: Austin Seipp <[email protected]> >--------------------------------------------------------------- 99b58a6a9ec41f9f193df338338f118603a0d9b1 ghc/InteractiveUI.hs | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/ghc/InteractiveUI.hs b/ghc/InteractiveUI.hs index d982692..68380b3 100644 --- a/ghc/InteractiveUI.hs +++ b/ghc/InteractiveUI.hs @@ -246,7 +246,8 @@ defFullHelpText = " :info[!] [<name> ...] display information about the given names\n" ++ " (!: do not filter instances)\n" ++ " :issafe [<mod>] display safe haskell information of module <mod>\n" ++ - " :kind <type> show the kind of <type>\n" ++ + " :kind[!] <type> show the kind of <type>\n" ++ + " (!: also print the normalised type)\n" ++ " :load [*]<module> ... load module(s) and their dependents\n" ++ " :main [<arguments> ...] run the main function with the given arguments\n" ++ " :module [+/-] [*]<mod> ... set the context for expression evaluation\n" ++ _______________________________________________ ghc-commits mailing list [email protected] http://www.haskell.org/mailman/listinfo/ghc-commits
