diff options
author | Austin Seipp <austin@well-typed.com> | 2014-11-10 15:13:26 -0600 |
---|---|---|
committer | Austin Seipp <austin@well-typed.com> | 2014-11-10 15:15:16 -0600 |
commit | 7ae596af381278dc43b7312d48a18b7cce6e4ab9 (patch) | |
tree | 08de726a0d61b86b43dc2c4511e0656e26094eba /ghc | |
parent | 87101364e0c2db5e472c6331ad35503028b2ec3c (diff) | |
download | haskell-7ae596af381278dc43b7312d48a18b7cce6e4ab9.tar.gz |
Typo fix; Trac #9787
Also, reword :print description.
Signed-off-by: Austin Seipp <austin@well-typed.com>
Diffstat (limited to 'ghc')
-rw-r--r-- | ghc/InteractiveUI.hs | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/ghc/InteractiveUI.hs b/ghc/InteractiveUI.hs index e6d1529686..1d4504815c 100644 --- a/ghc/InteractiveUI.hs +++ b/ghc/InteractiveUI.hs @@ -275,8 +275,8 @@ defFullHelpText = " :list show the source code around current breakpoint\n" ++ " :list <identifier> show the source code for <identifier>\n" ++ " :list [<module>] <line> show the source code around line number <line>\n" ++ - " :print [<name> ...] prints a value without forcing its computation\n" ++ - " :sprint [<name> ...] simplifed version of :print\n" ++ + " :print [<name> ...] show a value without forcing its computation\n" ++ + " :sprint [<name> ...] simplified version of :print\n" ++ " :step single-step after stopping at a breakpoint\n"++ " :step <expr> single-step into <expr>\n"++ " :steplocal single-step within the current top-level binding\n"++ |