aboutsummaryrefslogtreecommitdiff
path: root/lib/pp.mli
diff options
context:
space:
mode:
authorGaëtan Gilbert2019-11-21 16:46:11 +0100
committerGaëtan Gilbert2019-11-21 16:46:11 +0100
commitc0f34539209842735ccb93f3c069632b7eee4d6c (patch)
tree32cd948273f79a2c01ad27b4ed0244ea60d7e2f9 /lib/pp.mli
parentb680b06b31c27751a7d551d95839aea38f7fbea1 (diff)
parentd016f69818b30b75d186fb14f440b93b0518fc66 (diff)
Merge PR #11010: [coq] Untabify the whole ML codebase.
Reviewed-by: SkySkimmer Reviewed-by: herbelin
Diffstat (limited to 'lib/pp.mli')
-rw-r--r--lib/pp.mli4
1 files changed, 2 insertions, 2 deletions
diff --git a/lib/pp.mli b/lib/pp.mli
index b97e74132c..7bb66b0135 100644
--- a/lib/pp.mli
+++ b/lib/pp.mli
@@ -149,8 +149,8 @@ val prlist_strict : ('a -> t) -> 'a list -> t
val prlist_with_sep :
(unit -> t) -> ('a -> t) -> 'a list -> t
(** [prlist_with_sep sep pr [a ; ... ; c]] outputs
- [pr a ++ sep () ++ ... ++ sep () ++ pr c].
- where the thunk sep is memoized, rather than being called each place
+ [pr a ++ sep () ++ ... ++ sep () ++ pr c].
+ where the thunk sep is memoized, rather than being called each place
its result is used.
*)