diff options
author | Simon Marlow <marlowsd@gmail.com> | 2008-11-04 09:29:29 +0000 |
---|---|---|
committer | Simon Marlow <marlowsd@gmail.com> | 2008-11-04 09:29:29 +0000 |
commit | 426b9e61dfa26ff086bc0195a8c5c0d2700c315e (patch) | |
tree | 8b2aacd436cdbf38c1e602b8e5bc78fcd7b984c7 /compiler/ghci | |
parent | 6bbe864b6af5df8267d43cc3b08f15a435c1ac37 (diff) | |
download | haskell-426b9e61dfa26ff086bc0195a8c5c0d2700c315e.tar.gz |
fix the :help docs for :set stop (#2737)
Diffstat (limited to 'compiler/ghci')
-rw-r--r-- | compiler/ghci/InteractiveUI.hs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/compiler/ghci/InteractiveUI.hs b/compiler/ghci/InteractiveUI.hs index 4db8900a2b..4fdf949233 100644 --- a/compiler/ghci/InteractiveUI.hs +++ b/compiler/ghci/InteractiveUI.hs @@ -255,7 +255,7 @@ helpText = " :set prog <progname> set the value returned by System.getProgName\n" ++ " :set prompt <prompt> set the prompt used in GHCi\n" ++ " :set editor <cmd> set the command used for :edit\n" ++ - " :set stop <cmd> set the command to run when a breakpoint is hit\n" ++ + " :set stop [<n>] <cmd> set the command to run when a breakpoint is hit\n" ++ " :unset <option> ... unset options\n" ++ "\n" ++ " Options for ':set' and ':unset':\n" ++ |