summaryrefslogtreecommitdiff
path: root/stdlib/scanf.mli
diff options
context:
space:
mode:
Diffstat (limited to 'stdlib/scanf.mli')
-rw-r--r--stdlib/scanf.mli3
1 files changed, 1 insertions, 2 deletions
diff --git a/stdlib/scanf.mli b/stdlib/scanf.mli
index 891bf1abf3..09753cdbc4 100644
--- a/stdlib/scanf.mli
+++ b/stdlib/scanf.mli
@@ -197,7 +197,6 @@ val bscanf :
*)
val fscanf : in_channel -> ('a, Scanning.scanbuf, 'b) format -> 'a -> 'b;;
-
(** Same as {!Scanf.bscanf}, but inputs from the given channel.
Warning: since all scanning functions operate from a scanning
@@ -221,7 +220,7 @@ val sscanf : string -> ('a, Scanning.scanbuf, 'b) format -> 'a -> 'b;;
val scanf : ('a, Scanning.scanbuf, 'b) format -> 'a -> 'b;;
(** Same as {!Scanf.bscanf}, but reads from the predefined scanning
- buffer [Scanning.stdib] that is connected to [stdin]. *)
+ buffer {!Scanf.Scanning.stdib} that is connected to [stdin]. *)
val kscanf :
Scanning.scanbuf -> (Scanning.scanbuf -> exn -> 'a) ->