summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorXavier Leroy <xavier.leroy@inria.fr>2001-04-26 13:30:32 +0000
committerXavier Leroy <xavier.leroy@inria.fr>2001-04-26 13:30:32 +0000
commit264096300248fa43632c7f0ca1ee23cabd8470f8 (patch)
tree61945fdbfb3b59866b5f72262129a95863163c42
parent5b1d13349879250192ca19355da523178e1d311e (diff)
downloadocaml-264096300248fa43632c7f0ca1ee23cabd8470f8.tar.gz
Erreur dans la doc de Array.create
git-svn-id: http://caml.inria.fr/svn/ocaml/trunk@3493 f963ae5c-01c2-4b8c-9fe0-0dff7051ff02
-rw-r--r--stdlib/array.mli2
1 files changed, 1 insertions, 1 deletions
diff --git a/stdlib/array.mli b/stdlib/array.mli
index 256477fa64..fce9dd300d 100644
--- a/stdlib/array.mli
+++ b/stdlib/array.mli
@@ -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]. *)