From 26df9389686429dacafcf38d0015b4e4e3f4df00 Mon Sep 17 00:00:00 2001 From: Simon Cruanes Date: Thu, 5 Nov 2020 12:05:31 -0500 Subject: [PATCH] more doc --- src/core/CCList.mli | 2 +- src/core/mkshims.ml | 3 ++- 2 files changed, 3 insertions(+), 2 deletions(-) diff --git a/src/core/CCList.mli b/src/core/CCList.mli index 49e500c4..70424924 100644 --- a/src/core/CCList.mli +++ b/src/core/CCList.mli @@ -808,7 +808,7 @@ val of_gen : 'a gen -> 'a t In the result, elements appear in the same order as they did in the source [gen]. *) (** {2 Infix Operators} - It is convenient to {!open CCList.Infix} to access the infix operators + It is convenient to [open] {!CCList.Infix} to access the infix operators without cluttering the scope too much. @since 0.16 *) diff --git a/src/core/mkshims.ml b/src/core/mkshims.ml index 97cccb71..f4fd2a83 100644 --- a/src/core/mkshims.ml +++ b/src/core/mkshims.ml @@ -114,6 +114,7 @@ let shims_array_label_post_408 = " let shims_let_op_pre_408 = " + (** glue code for let-operators on OCaml >= 4.08 (auto generated) *) module type S = sig type 'a t_let end module Make(X:sig type 'a t end) = struct type 'a t_let = 'a X.t end @@ -121,7 +122,7 @@ let shims_let_op_pre_408 = module Make2(X:sig type ('a,'b) t end) = struct type ('a,'b) t_let2 = ('a,'b) X.t end " let shims_let_op_post_408 = - " + " (** glue code for let-operators on OCaml >= 4.08 (auto generated) *) module type S = sig type 'a t_let val (let+) : 'a t_let -> ('a -> 'b) -> 'b t_let