summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--stdlib/printf.mli8
1 files changed, 4 insertions, 4 deletions
diff --git a/stdlib/printf.mli b/stdlib/printf.mli
index bc77af3e4..f4451e6ff 100644
--- a/stdlib/printf.mli
+++ b/stdlib/printf.mli
@@ -102,10 +102,10 @@ val bprintf : Buffer.t -> ('a, Buffer.t, unit) format -> 'a
append the formatted arguments to the given extensible buffer
(see module {!Buffer}). *)
-val kprintf : (string -> 'b) -> ('a, unit, 'b) format -> 'a
-(** Same as {!Print.sprintf}, but instead of returning the string as result,
- after doing the formatting, [kprintf] will pass the result string
- as argument to its first argument ("k" stands for "continuation"). *)
+val kprintf : (string -> string) -> ('a, unit, string) format -> 'a
+(** [kprintf k format arguments] is the same as [sprintf format arguments],
+ except that the resulting string is passed as argument to [k]; the
+ result of [k] is then returned as the result of [kprintf]. *)
(**/**)