diff options
author | Damien Doligez <damien.doligez-inria.fr> | 2004-06-24 11:19:05 +0000 |
---|---|---|
committer | Damien Doligez <damien.doligez-inria.fr> | 2004-06-24 11:19:05 +0000 |
commit | a4111b65e5d0c89f87730f27292a64d52665c3d7 (patch) | |
tree | 3c20886bcedc3a4bb6920cdaad5e9d96e9b99283 | |
parent | adf48882c9b19aba33f57596d62419cd54ab3e58 (diff) |
PR#2799
git-svn-id: http://caml.inria.fr/svn/ocaml/trunk@6452 f963ae5c-01c2-4b8c-9fe0-0dff7051ff02
-rw-r--r-- | stdlib/scanf.mli | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/stdlib/scanf.mli b/stdlib/scanf.mli index 09753cdbc..511b2fdac 100644 --- a/stdlib/scanf.mli +++ b/stdlib/scanf.mli @@ -208,7 +208,7 @@ val fscanf : in_channel -> ('a, Scanning.scanbuf, 'b) format -> 'a -> 'b;; after a scan involving a format that necessitates some look ahead (such as a format that ends by skipping whitespace in the input). - To avoid confusion, consider using [bscanf] with an explicitely + To avoid confusion, consider using [bscanf] with an explicitly created scanning buffer. Use for instance [Scanning.from_file f] to allocate the scanning buffer reading from file [f]. |