mirror of
https://github.com/curl/curl.git
synced 2026-05-30 03:37:28 +03:00
gen.pl: change wording for mutexed options
Instead of saying "This option overrides NNN", now say "This option is mutually exclusive to NNN" in the generated man page ouput, as the option does not in all cases actually override the others but they are always mutually exclusive. Ref: #8704 Closes #8716
This commit is contained in:
parent
01a1697a79
commit
53399c72ff
1 changed files with 2 additions and 1 deletions
|
|
@ -349,7 +349,8 @@ sub single {
|
|||
my $l = manpageify($k);
|
||||
$mstr .= sprintf "%s$l", $mstr?" and ":"";
|
||||
}
|
||||
push @foot, overrides($standalone, "This option overrides $mstr. ");
|
||||
push @foot, overrides($standalone,
|
||||
"This option is mutually exclusive to $mstr. ");
|
||||
}
|
||||
if($examples[0]) {
|
||||
my $s ="";
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue