@ must be escaped in some strange circumstances!

git-svn-id: http://caml.inria.fr/svn/ocaml/trunk@10961 f963ae5c-01c2-4b8c-9fe0-0dff7051ff02
master
Pierre Weis 2011-02-23 16:36:36 +00:00
parent 3922204442
commit 480c99722b
1 changed files with 1 additions and 1 deletions

View File

@ -385,7 +385,7 @@ val bscanf : Scanning.in_channel -> ('a, 'b, 'c, 'd) scanner;;
character is encountered, the string token spreads as much as
possible. For instance, ["%s@\t"] reads a string up to the next
tab character or to the end of input. If a scanning
indication [@c] does not follow a string conversion, it is treated
indication [\@c] does not follow a string conversion, it is treated
as a plain [c] character.
Note: