summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorMaxence Guesdon <maxence.guesdon@inria.fr>2002-04-25 12:23:18 +0000
committerMaxence Guesdon <maxence.guesdon@inria.fr>2002-04-25 12:23:18 +0000
commitb18af6b8d2198300bbddb42f269649de20f3c458 (patch)
tree3688a8b7bcaeb49d7610236685463b4055ca6c72
parenta4ade26294eb656f0767936a897495a12e254a87 (diff)
corection commentaire
git-svn-id: http://caml.inria.fr/svn/ocaml/trunk@4737 f963ae5c-01c2-4b8c-9fe0-0dff7051ff02
-rw-r--r--ocamldoc/odoc_info.mli4
1 files changed, 2 insertions, 2 deletions
diff --git a/ocamldoc/odoc_info.mli b/ocamldoc/odoc_info.mli
index c9ceffa11..ff87428fe 100644
--- a/ocamldoc/odoc_info.mli
+++ b/ocamldoc/odoc_info.mli
@@ -98,11 +98,11 @@ module Name :
(** [concat t1 t2] returns the concatenation of [t1] and [t2].*)
val concat : t -> t -> t
(** Return the depth of the name, i.e. the numer of levels to the root.
- Example : [depth Toto.Tutu.name] = [3]. *)
+ Example : [depth "Toto.Tutu.name"] = [3]. *)
val depth : t -> int
(** Take two names n1 and n2 = n3.n4 and return n4 if n3=n1 or else n2. *)
val get_relative : t -> t -> t
- (** Return the name of the 'father' (like dirname for a file name).*)
+ (** Return the name of the 'father' (like [dirname] for a file name).*)
val father : t -> t
end