summaryrefslogtreecommitdiff
path: root/ghc
diff options
context:
space:
mode:
authorReid Barton <rwbarton@gmail.com>2013-08-28 23:00:47 -0400
committerAustin Seipp <aseipp@pobox.com>2013-08-29 17:04:46 -0500
commit99b58a6a9ec41f9f193df338338f118603a0d9b1 (patch)
tree11f82ff91cb05971ef18d19518b3e349bbff49bd /ghc
parentc080f727ba5f83921b842fcff71e9066adbdc250 (diff)
downloadhaskell-99b58a6a9ec41f9f193df338338f118603a0d9b1.tar.gz
Document :kind! in ghci built-in help
Signed-off-by: Austin Seipp <aseipp@pobox.com>
Diffstat (limited to 'ghc')
-rw-r--r--ghc/InteractiveUI.hs3
1 files changed, 2 insertions, 1 deletions
diff --git a/ghc/InteractiveUI.hs b/ghc/InteractiveUI.hs
index d9826929ab..68380b3c04 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" ++