chore: minor details in doc

This commit is contained in:
Simon Cruanes 2018-03-28 20:30:26 -05:00
parent 6e50ff41c6
commit 78d79c1317
3 changed files with 8 additions and 7 deletions

View file

@ -105,8 +105,8 @@ module Poly : sig
val pp : 'a printer -> 'b printer -> ('a, 'b) Hashtbl.t printer val pp : 'a printer -> 'b printer -> ('a, 'b) Hashtbl.t printer
(** Printer for table. (** Printer for table.
@since 0.13 Renamed from [print] since 2.0.
Renamed from [print] since 2.0. *) @since 0.13 *)
end end
include module type of Poly include module type of Poly
@ -206,8 +206,8 @@ module type S = sig
val pp : key printer -> 'a printer -> 'a t printer val pp : key printer -> 'a printer -> 'a t printer
(** Printer for tables. (** Printer for tables.
@since 0.13 Renamed from [print] since 2.0.
Renamed from [print] since 2.0. *) @since 0.13 *)
end end
module Make(X : Hashtbl.HashedType) : module Make(X : Hashtbl.HashedType) :

View file

@ -132,8 +132,9 @@ module type S = sig
(** Return a [ktree] of the elements of the heap. *) (** Return a [ktree] of the elements of the heap. *)
val pp : ?sep:string -> elt printer -> t printer val pp : ?sep:string -> elt printer -> t printer
(** @since 0.16 (** printer
Renamed from {!print} since 2.0 *) Renamed from {!print} since 2.0
@since 0.16 *)
end end
module Make(E : PARTIAL_ORD) : S with type elt = E.t module Make(E : PARTIAL_ORD) : S with type elt = E.t

View file

@ -65,7 +65,7 @@ module type S = sig
(** returns the bindings as a list of ([left], [right]) values *) (** returns the bindings as a list of ([left], [right]) values *)
val list_right : t -> (right * left) list val list_right : t -> (right * left) list
(** returns the bindings as a list of ([right, [left]) values *) (** returns the bindings as a list of [(right, left)] values *)
val add_seq : (left * right) sequence -> t -> t val add_seq : (left * right) sequence -> t -> t