From 78d79c1317f99c4d4a50c72df1d405c800973e49 Mon Sep 17 00:00:00 2001 From: Simon Cruanes Date: Wed, 28 Mar 2018 20:30:26 -0500 Subject: [PATCH] chore: minor details in doc --- src/core/CCHashtbl.mli | 8 ++++---- src/core/CCHeap.mli | 5 +++-- src/data/CCBijection.mli | 2 +- 3 files changed, 8 insertions(+), 7 deletions(-) diff --git a/src/core/CCHashtbl.mli b/src/core/CCHashtbl.mli index 975d2cc1..3897ff93 100644 --- a/src/core/CCHashtbl.mli +++ b/src/core/CCHashtbl.mli @@ -105,8 +105,8 @@ module Poly : sig val pp : 'a printer -> 'b printer -> ('a, 'b) Hashtbl.t printer (** Printer for table. - @since 0.13 - Renamed from [print] since 2.0. *) + Renamed from [print] since 2.0. + @since 0.13 *) end include module type of Poly @@ -206,8 +206,8 @@ module type S = sig val pp : key printer -> 'a printer -> 'a t printer (** Printer for tables. - @since 0.13 - Renamed from [print] since 2.0. *) + Renamed from [print] since 2.0. + @since 0.13 *) end module Make(X : Hashtbl.HashedType) : diff --git a/src/core/CCHeap.mli b/src/core/CCHeap.mli index c0801a73..ff132cfd 100644 --- a/src/core/CCHeap.mli +++ b/src/core/CCHeap.mli @@ -132,8 +132,9 @@ module type S = sig (** Return a [ktree] of the elements of the heap. *) val pp : ?sep:string -> elt printer -> t printer - (** @since 0.16 - Renamed from {!print} since 2.0 *) + (** printer + Renamed from {!print} since 2.0 + @since 0.16 *) end module Make(E : PARTIAL_ORD) : S with type elt = E.t diff --git a/src/data/CCBijection.mli b/src/data/CCBijection.mli index 1c39d41e..470051ab 100644 --- a/src/data/CCBijection.mli +++ b/src/data/CCBijection.mli @@ -65,7 +65,7 @@ module type S = sig (** returns the bindings as a list of ([left], [right]) values *) 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