doc: inline the stdlib doc of Seq and ListLabels

This commit is contained in:
Fardale 2023-03-13 11:26:23 +01:00
parent e6611f1920
commit a7b14c5620
2 changed files with 2 additions and 1 deletions

View file

@ -16,6 +16,7 @@ type 'a printer = Format.formatter -> 'a -> unit
[@@@ifge 4.07]
include module type of Seq
(** @inline *)
[@@@else_]

View file

@ -8,10 +8,10 @@ type 'a iter = ('a -> unit) -> unit
type 'a gen = unit -> 'a option
(** {{: https://caml.inria.fr/pub/docs/manual-ocaml/libref/StringLabels.html} Documentation for the standard StringLabels module} *)
include module type of struct
include StringLabels
end
(** @inline *)
val length : t -> int
(** [length s] returns the length (number of characters) of the given string [s]. *)