Skip to content

Commit

Permalink
Erreur dans la doc de Array.create
Browse files Browse the repository at this point in the history
git-svn-id: http://caml.inria.fr/svn/ocaml/trunk@3493 f963ae5c-01c2-4b8c-9fe0-0dff7051ff02
  • Loading branch information
xavierleroy committed Apr 26, 2001
1 parent 5b1d133 commit 2640963
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion stdlib/array.mli
Original file line number Diff line number Diff line change
Expand Up @@ -38,7 +38,7 @@ external create: int -> 'a -> 'a array = "make_vect"
Consequently, if [x] is mutable, it is shared among all elements
of the array, and modifying [x] through one of the array entries
will modify all other entries at the same time.
Raise [Invalid_argument] if [n <= 0] or [n > Sys.max_array_length].
Raise [Invalid_argument] if [n < 0] or [n > Sys.max_array_length].
If the value of [x] is a floating-point number, then the maximum
size is only [Sys.max_array_length / 2].
[Array.create] is a deprecated alias for [Array.make]. *)
Expand Down

0 comments on commit 2640963

Please sign in to comment.