summaryrefslogtreecommitdiffstats
path: root/stdlib
diff options
context:
space:
mode:
Diffstat (limited to 'stdlib')
-rw-r--r--stdlib/arg.mli4
1 files changed, 2 insertions, 2 deletions
diff --git a/stdlib/arg.mli b/stdlib/arg.mli
index 869d030e2..e6e07316d 100644
--- a/stdlib/arg.mli
+++ b/stdlib/arg.mli
@@ -94,7 +94,7 @@ val parse :
*)
val parse_dynamic :
- (string * spec * string) list ref -> anon_fun -> string -> unit
+ (key * spec * doc) list ref -> anon_fun -> string -> unit
(** Same as {!Arg.parse}, except that the [speclist] argument is a reference
and may be updated during the parsing. A typical use for this feature
is to parse command lines of the form:
@@ -116,7 +116,7 @@ val parse_argv : ?current: int ref -> string array ->
*)
val parse_argv_dynamic : ?current:int ref -> string array ->
- (string * spec * string) list ref -> anon_fun -> string -> unit
+ (key * spec * doc) list ref -> anon_fun -> string -> unit
(** Same as {!Arg.parse_argv}, except that the [speclist] argument is a
reference and may be updated during the parsing.
See {!Arg.parse_dynamic}.