diff options
Diffstat (limited to 'stdlib/arg.mli')
-rw-r--r-- | stdlib/arg.mli | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/stdlib/arg.mli b/stdlib/arg.mli index f09a7790d..599524ad6 100644 --- a/stdlib/arg.mli +++ b/stdlib/arg.mli @@ -36,7 +36,7 @@ *) 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 *) |