Skip to content

Commit

Permalink
Fixes coq#18434: arguments of --external in coqdoc were swapped.
Browse files Browse the repository at this point in the history
  • Loading branch information
herbelin committed Jan 8, 2024
1 parent 7a50f87 commit e4adb19
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion tools/coqdoc/cmdArgs.ml
Original file line number Diff line number Diff line change
Expand Up @@ -180,7 +180,7 @@ let args_options = Arg.align [
"--verbose", arg_set (fun p -> { p with quiet = false }), " Verbose mode";
"--no-externals", arg_set (fun p -> { p with externals = false }),
" No links to Coq standard library";
"--external", arg_url_path Index.add_external_library,
"--external", arg_url_path (fun url lp -> Index.add_external_library lp url),
"<url>+<d> set URL for external library <d>";
"--coqlib_url", arg_string (fun p u -> { p with coqlib_url = u }),
"<url> Set URL for Coq standard library (default: " ^ Coq_config.wwwstdlib ^ ")";
Expand Down

0 comments on commit e4adb19

Please sign in to comment.