PR#5585: typo explicitely -> explicitly
git-svn-id: http://caml.inria.fr/svn/ocaml/trunk@12353 f963ae5c-01c2-4b8c-9fe0-0dff7051ff02master
parent
44cdb20670
commit
1b782a0122
|
@ -50,10 +50,10 @@ let get_environment () =
|
|||
let env =
|
||||
Array.fold_right
|
||||
(fun elem acc ->
|
||||
if have_name_in_config_env elem then
|
||||
acc
|
||||
else
|
||||
elem :: acc)
|
||||
if have_name_in_config_env elem then
|
||||
acc
|
||||
else
|
||||
elem :: acc)
|
||||
env
|
||||
[] in
|
||||
Array.of_list (env @ !Debugger_config.environment)
|
||||
|
@ -109,7 +109,7 @@ let generic_exec =
|
|||
"Win32" -> generic_exec_win
|
||||
| _ -> generic_exec_unix
|
||||
|
||||
(* Execute the program by calling the runtime explicitely *)
|
||||
(* Execute the program by calling the runtime explicitly *)
|
||||
let exec_with_runtime =
|
||||
generic_exec
|
||||
(function () ->
|
||||
|
@ -120,7 +120,7 @@ let exec_with_runtime =
|
|||
thinks each command line parameter is a file.
|
||||
So no good solution so far *)
|
||||
Printf.sprintf "%sset CAML_DEBUG_SOCKET=%s && %s %s %s"
|
||||
(get_win32_environment ())
|
||||
(get_win32_environment ())
|
||||
!socket_name
|
||||
runtime_program
|
||||
!program_name
|
||||
|
@ -140,7 +140,7 @@ let exec_direct =
|
|||
"Win32" ->
|
||||
(* See the comment above *)
|
||||
Printf.sprintf "%sset CAML_DEBUG_SOCKET=%s && %s %s"
|
||||
(get_win32_environment ())
|
||||
(get_win32_environment ())
|
||||
!socket_name
|
||||
!program_name
|
||||
!arguments
|
||||
|
|
|
@ -52,7 +52,7 @@ let mkpatvar name pos =
|
|||
|
||||
(*
|
||||
Ghost expressions and patterns:
|
||||
expressions and patterns that do not appear explicitely in the
|
||||
expressions and patterns that do not appear explicitly in the
|
||||
source file they have the loc_ghost flag set to true.
|
||||
Then the profiler will not try to instrument them and the
|
||||
-stypes option will not try to display their type.
|
||||
|
|
|
@ -67,7 +67,7 @@ val bool : unit -> bool
|
|||
(** {6 Advanced functions} *)
|
||||
|
||||
(** The functions from module [State] manipulate the current state
|
||||
of the random generator explicitely.
|
||||
of the random generator explicitly.
|
||||
This allows using one or several deterministic PRNGs,
|
||||
even in a multi-threaded program, without interference from
|
||||
other parts of the program.
|
||||
|
|
|
@ -483,7 +483,7 @@ let compatible_format_type fmt1 fmt2 =
|
|||
Tformat.summarize_format_type (string_to_format fmt2);;
|
||||
|
||||
(* Checking that [c] is indeed in the input, then skips it.
|
||||
In this case, the character c has been explicitely specified in the
|
||||
In this case, the character c has been explicitly specified in the
|
||||
format as being mandatory in the input; hence we should fail with
|
||||
End_of_file in case of end_of_input. (Remember that Scan_failure is raised
|
||||
only when (we can prove by evidence) that the input does not match the
|
||||
|
|
|
@ -262,7 +262,7 @@ let message = function
|
|||
"this statement never returns (or has an unsound type.)"
|
||||
| Camlp4 s -> s
|
||||
| Useless_record_with ->
|
||||
"all the fields are explicitely listed in this record:\n\
|
||||
"all the fields are explicitly listed in this record:\n\
|
||||
the 'with' clause is useless."
|
||||
| Bad_module_name (modname) ->
|
||||
"bad source file name: \"" ^ modname ^ "\" is not a valid module name."
|
||||
|
|
Loading…
Reference in New Issue