diff options
author | Xavier Leroy <xavier.leroy@inria.fr> | 2002-07-25 14:06:19 +0000 |
---|---|---|
committer | Xavier Leroy <xavier.leroy@inria.fr> | 2002-07-25 14:06:19 +0000 |
commit | 1c2eda75a73e92924259fb5209e55d93d2c39e1d (patch) | |
tree | 839deb1321d63cd266423ec308f72984fc655a98 | |
parent | 8cd57a76cb6cbabd1b8666003fdd453420655e44 (diff) |
ocamldoc n'aime pas [@c] ...
git-svn-id: http://caml.inria.fr/svn/ocaml/trunk@5039 f963ae5c-01c2-4b8c-9fe0-0dff7051ff02
-rw-r--r-- | stdlib/scanf.mli | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/stdlib/scanf.mli b/stdlib/scanf.mli index 9ea944547..476993c7d 100644 --- a/stdlib/scanf.mli +++ b/stdlib/scanf.mli @@ -15,7 +15,7 @@ (** Formatted input functions. *) -(** Scanning buffers *) +(** Scanning buffers. *) module Scanning : sig type scanbuf;; @@ -113,7 +113,7 @@ val bscanf : and [%4f] reads a float with 4 characters. The scanning indications are introduced by a [@] character, followed - by any character [c]. The effect of [@c] is to skip input characters + by any character [c]. Its effect is to skip input characters until a matching [c] is found. If a scanning indication immediately follows a [s] conversion specification, it specifies the boundary of the token |