diff options
author | Damien Doligez <damien.doligez-inria.fr> | 1997-09-11 15:10:23 +0000 |
---|---|---|
committer | Damien Doligez <damien.doligez-inria.fr> | 1997-09-11 15:10:23 +0000 |
commit | c44e6f999a4b06a4b0e961e8607ab8c557501a57 (patch) | |
tree | 3255033ee7995334288ca1ed7cd17d2b1de45451 /stdlib/arg.ml | |
parent | 1d41f4abb025864b1aee444790b613cc5f0a444a (diff) |
arg.ml, arg.mli, string.mli: amelioration de la doc
array.mli, array.ml, random.ml: create -> make (coherence avec String)
sys.ml, sys.mli: ajout max_string_length, max_array_length
git-svn-id: http://caml.inria.fr/svn/ocaml/trunk@1706 f963ae5c-01c2-4b8c-9fe0-0dff7051ff02
Diffstat (limited to 'stdlib/arg.ml')
-rw-r--r-- | stdlib/arg.ml | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/stdlib/arg.ml b/stdlib/arg.ml index c6cb42ed3..8bbb56ffd 100644 --- a/stdlib/arg.ml +++ b/stdlib/arg.ml @@ -12,7 +12,7 @@ (* $Id$ *) type spec = - | Unit of (unit -> unit) (* Call the function with no argument *) + | Unit of (unit -> unit) (* Call the function with unit argument *) | Set of bool ref (* Set the reference to true *) | Clear of bool ref (* Set the reference to false *) | String of (string -> unit) (* Call the function with a string argument *) |