git-svn-id: http://caml.inria.fr/svn/ocaml/trunk@13001 f963ae5c-01c2-4b8c-9fe0-0dff7051ff02
master
Alain Frisch 2012-10-10 09:45:11 +00:00
parent 78e80bc087
commit 57aef3bf24
2 changed files with 2 additions and 2 deletions

View File

@ -996,7 +996,7 @@ let merge merge_options modules_list =
raise (Failure (Odoc_messages.two_interfaces m.m_name))
)
| _ ->
(* two many Module.t ! *)
(* too many Module.t ! *)
raise (Failure (Odoc_messages.too_many_module_objects m.m_name))
in

View File

@ -258,7 +258,7 @@ let implicit_match_in_parameter = "Parameters contain implicit pattern matching.
let unknown_extension f = "Unknown extension for file "^f^"."
let two_implementations name = "There are two implementations of module "^name^"."
let two_interfaces name = "There are two interfaces of module "^name^"."
let too_many_module_objects name = "There are two many interfaces/implementation of module "^name^"."
let too_many_module_objects name = "There are too many interfaces/implementation of module "^name^"."
let exception_not_found_in_implementation exc m = "Exception "^exc^" was not found in implementation of module "^m^"."
let type_not_found_in_implementation exc m = "Type "^exc^" was not found in implementation of module "^m^"."
let module_not_found_in_implementation m m2 = "Module "^m^" was not found in implementation of module "^m2^"."