summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorBasile Starynkevitch <basile.starynkevitch@inria.fr>2003-10-29 15:11:18 +0000
committerBasile Starynkevitch <basile.starynkevitch@inria.fr>2003-10-29 15:11:18 +0000
commit970eb989d507a442954a6c1369972f77a1e8f618 (patch)
treebec7ed0c473a70f998e140d20818ab81c7971a26
parenta4564cec5560b2ba726bd63dddd6b0ce31a71fe3 (diff)
downloadocaml-970eb989d507a442954a6c1369972f77a1e8f618.tar.gz
typos in messages for shell
git-svn-id: http://caml.inria.fr/svn/ocaml/trunk@5891 f963ae5c-01c2-4b8c-9fe0-0dff7051ff02
-rw-r--r--debugger/command_line.ml4
1 files changed, 2 insertions, 2 deletions
diff --git a/debugger/command_line.ml b/debugger/command_line.ml
index 939f64cebc..cebe90bb6a 100644
--- a/debugger/command_line.ml
+++ b/debugger/command_line.ml
@@ -212,7 +212,7 @@ let instr_cd ppf lexbuf =
let instr_shell ppf lexbuf =
let cmd = argument_eol argument lexbuf in
let err = Sys.command cmd in
- if (err != 0) then eprintf "Shell ommand %S failed with exit code %d\n%!" cmd err
+ if (err != 0) then eprintf "Shell command %S failed with exit code %d\n%!" cmd err
let instr_pwd ppf lexbuf =
eol lexbuf;
@@ -898,7 +898,7 @@ With no argument, reset the search path." };
"exit the debugger." };
{ instr_name = "shell"; instr_prio = false;
instr_action = instr_shell; instr_repeat = true; instr_help =
-"Execute a given COMMAND thru the usual shell (using system call)." };
+"Execute a given COMMAND thru the shell." };
(* Displacements *)
{ instr_name = "run"; instr_prio = true;
instr_action = instr_run; instr_repeat = true; instr_help =