Skip to content

Commit bbcfece

Browse files
committed
DOC: fix invalid references to other sections
1 parent 45ed358 commit bbcfece

File tree

1 file changed

+5
-5
lines changed

1 file changed

+5
-5
lines changed

docs/index.html

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -762,7 +762,7 @@ <h2 id="_introduction">1. Introduction</h2>
762762
</div>
763763
<div class="paragraph">
764764
<p>Here is a small example application that uses the <code>CommandLine.call</code> <a href="#_less_boilerplate">convenience method</a>
765-
to do parsing and error handling in one line of code. The <a href="#Fully Automatic Help">mixinStandardHelpOptions</a> attribute is all
765+
to do parsing and error handling in one line of code. The <a href="#_mixin_standard_help_options">mixinStandardHelpOptions</a> attribute is all
766766
that is needed to give your application usage help and version help.</p>
767767
</div>
768768
<div id="CheckSum-application" class="listingblock">
@@ -2412,7 +2412,7 @@ <h3 id="_built_in_help_subcommand">8.3. Built-in Help Subcommand</h3>
24122412
<div class="sect2">
24132413
<h3 id="_custom_help_subcommands">8.4. Custom Help Subcommands</h3>
24142414
<div class="paragraph">
2415-
<p>Custom help subcommands should mark themselves as a <a href="#Help subcommands">help command</a> to tell picocli not to throw a <code>MissingParameterException</code> when required options are missing.</p>
2415+
<p>Custom help subcommands should mark themselves as a <a href="#_help_subcommands">help command</a> to tell picocli not to throw a <code>MissingParameterException</code> when required options are missing.</p>
24162416
</div>
24172417
<div class="listingblock">
24182418
<div class="content">
@@ -2447,7 +2447,7 @@ <h3 id="_printing_help_automatically">8.5. Printing Help Automatically</h3>
24472447
when a help option was specified on the command line (options annotated with the <code>versionHelp</code> or <code>usageHelp</code> attribute - but not the <code>help</code> attribute).</p>
24482448
</div>
24492449
<div class="paragraph">
2450-
<p>The same holds for the <code>mixinStandardHelpOptions</code> attribute, the built-in <code>HelpCommand</code> and any custom help subcommands marked as a <a href="#Help subcommands">help command</a>.</p>
2450+
<p>The same holds for the <code>mixinStandardHelpOptions</code> attribute, the built-in <code>HelpCommand</code> and any custom help subcommands marked as a <a href="#_help_subcommands">help command</a>.</p>
24512451
</div>
24522452
<div class="paragraph">
24532453
<p>The following <a href="#_less_boilerplate">convenience methods</a> automatically print help:</p>
@@ -3760,7 +3760,7 @@ <h3 id="_usage_help_for_subcommands">13.7. Usage Help for Subcommands</h3>
37603760
</div>
37613761
</div>
37623762
<div class="paragraph">
3763-
<p>The above example uses the <a href="#Fully Automatic Help">mixinStandardHelpOptions</a> attribute to mix in
3763+
<p>The above example uses the <a href="#_mixin_standard_help_options">mixinStandardHelpOptions</a> attribute to mix in
37643764
<a href="#_help_options"><code>usageHelp</code></a> and <a href="#_help_options"><code>versionHelp</code></a> options and registers the <code>help</code> subcommand.</p>
37653765
</div>
37663766
<div class="paragraph">
@@ -3918,7 +3918,7 @@ <h3 id="_mixins">14.2. Mixins</h3>
39183918
<p>Picocli 3.0 introduces the concept of "mixins". Mixins are a convenient alternative to subclassing:
39193919
picocli annotations from <em>any</em> class can be added to ("mixed in" with) another command.
39203920
This includes options, positional parameters, subcommands and command attributes.
3921-
Picocli <a href="#Fully Automatic Help">mixinStandardHelpOptions</a> internally uses a mixin.</p>
3921+
Picocli <a href="#_mixin_standard_help_options">mixinStandardHelpOptions</a> internally uses a mixin.</p>
39223922
</div>
39233923
<div class="paragraph">
39243924
<p>A mixin is a separate class with options, positional parameters, subcommands and command attributes

0 commit comments

Comments
 (0)