summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--ocamldoc/Makefile2
-rw-r--r--ocamldoc/Makefile.nt2
-rw-r--r--ocamldoc/odoc_info.mli7
3 files changed, 6 insertions, 5 deletions
diff --git a/ocamldoc/Makefile b/ocamldoc/Makefile
index 1941b933f..c3c600365 100644
--- a/ocamldoc/Makefile
+++ b/ocamldoc/Makefile
@@ -42,7 +42,7 @@ INSTALL_LIBDIR=$(OCAMLLIB)/ocamldoc
INSTALL_BINDIR=$(OCAMLBIN)
INSTALL_MANODIR=$(MANDIR)/mano
-INSTALL_MLIS=odoc_info.mli odoc_args.mli
+INSTALL_MLIS=odoc_info.mli
INSTALL_CMIS=$(INSTALL_MLIS:.mli=.cmi)
# Compilation
diff --git a/ocamldoc/Makefile.nt b/ocamldoc/Makefile.nt
index 4598f2384..b400e9dec 100644
--- a/ocamldoc/Makefile.nt
+++ b/ocamldoc/Makefile.nt
@@ -39,7 +39,7 @@ OCAMLDOC_LIBA=odoc_info.$(A)
INSTALL_LIBDIR=$(OCAMLLIB)/ocamldoc
INSTALL_BINDIR=$(OCAMLBIN)
-INSTALL_MLIS=odoc_info.mli odoc_args.mli
+INSTALL_MLIS=odoc_info.mli
INSTALL_CMIS=$(INSTALL_MLIS:.mli=.cmi)
# Compilation
diff --git a/ocamldoc/odoc_info.mli b/ocamldoc/odoc_info.mli
index 07925d644..d3bb806e9 100644
--- a/ocamldoc/odoc_info.mli
+++ b/ocamldoc/odoc_info.mli
@@ -849,13 +849,14 @@ module Dep :
val deps_of_types : ?kernel: bool -> Type.t_type list -> (Type.t_type * (Name.t list)) list
end
-(** Command line arguments.
- You can use this module to create custom generators.*)
+(** {2 Command line arguments} *)
+
+(** You can use this module to create custom generators.*)
module Args :
sig
(** The class type of documentation generators. *)
class type doc_generator =
- object method generate : Odoc_module.t_module list -> unit end
+ object method generate : Module.t_module list -> unit end
(** The file used by the generators outputting only one file. *)
val out_file : string ref