Typo dans pervasives.mli

git-svn-id: http://caml.inria.fr/svn/ocaml/trunk@2233 f963ae5c-01c2-4b8c-9fe0-0dff7051ff02
master
Xavier Leroy 1998-12-09 10:32:53 +00:00
parent b6280d4ea7
commit d500479d45
3 changed files with 2 additions and 5 deletions

Binary file not shown.

Binary file not shown.

View File

@ -293,6 +293,8 @@ val (^) : string -> string -> string
(*** Character operations *)
(* More character operations are provided in module [Char]. *)
external int_of_char : char -> int = "%identity"
(* Return the ASCII code of the argument. *)
val char_of_int : int -> char
@ -300,11 +302,6 @@ val char_of_int : int -> char
Raise [Invalid_argument "char_of_int"] if the argument is
outside the range 0--255. *)
(* More character operations are provided in module [Char]. *)
val (^) : string -> string -> string
(* String concatenation. *)
(*** String conversion functions *)
val string_of_bool : bool -> string