Skip to content

Commit e9e23f4

Browse files
committed
Fix typos
1 parent a476f5c commit e9e23f4

File tree

1 file changed

+7
-7
lines changed

1 file changed

+7
-7
lines changed

src/main/javadoc/overview.html

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@
2323
</a>
2424
<section id="Introducing">
2525
<h1>
26-
<img src="org/apache/commons/cli/doc-files//leaf.svg" style="height: 1em; padding-right: 0.25em" alt="leaf">Introducing Apache Commons CLI
26+
<img src="org/apache/commons/cli/doc-files/leaf.svg" style="height: 1em; padding-right: 0.25em" alt="leaf">Introducing Apache Commons CLI
2727
</h1>
2828

2929
<p>The Apacahe Commons CLI component parses command-line arguments for your application.</p>
@@ -120,7 +120,7 @@ <h2>Interrogating the CLI</h2>
120120
</section>
121121
</section>
122122
<section id="Using">
123-
<h1><img src="org/apache/commons/cli/doc-files//leaf.svg" style="height: 1em; padding-right: 0.25em" alt="leaf">Using Apache Commons CLI</h1>
123+
<h1><img src="org/apache/commons/cli/doc-files/leaf.svg" style="height: 1em; padding-right: 0.25em" alt="leaf">Using Apache Commons CLI</h1>
124124
<p>
125125
The following sections describe some example scenarios on how to
126126
use CLI in applications.
@@ -243,7 +243,7 @@ <h2>Retrieving the argument value</h2>
243243
</section>
244244

245245
<section>
246-
<h1><img src="org/apache/commons/cli/doc-files//leaf.svg" style="height: 1em; padding-right: 0.25em" alt="leaf">Using Ant as an Example</h1>
246+
<h1><img src="org/apache/commons/cli/doc-files/leaf.svg" style="height: 1em; padding-right: 0.25em" alt="leaf">Using Ant as an Example</h1>
247247
<p>
248248
<a href="https://ant.apache.org/">Ant</a> will be used
249249
here to illustrate how to create the <code>Options</code> required. The following
@@ -434,7 +434,7 @@ <h2>Displaying Usage and Help</h2>
434434
</section>
435435

436436
<section>
437-
<h1><img src="org/apache/commons/cli/doc-files//leaf.svg" style="height: 1em; padding-right: 0.25em" alt="leaf">Creating an ls Example</h1>
437+
<h1><img src="org/apache/commons/cli/doc-files/leaf.svg" style="height: 1em; padding-right: 0.25em" alt="leaf">Creating an ls Example</h1>
438438
<p>
439439
One of the most widely used command line applications in the *nix world
440440
is <code>ls</code>. Due to the large number of options required for <code>ls</code>
@@ -497,7 +497,7 @@ <h1><img src="org/apache/commons/cli/doc-files//leaf.svg" style="height: 1em; pa
497497
} </code></pre>
498498
</section>
499499
<section>
500-
<h1><img src="org/apache/commons/cli/doc-files//leaf.svg" style="height: 1em; padding-right: 0.25em" alt="leaf">Converting (Parsing) Option Values</h1>
500+
<h1><img src="org/apache/commons/cli/doc-files/leaf.svg" style="height: 1em; padding-right: 0.25em" alt="leaf">Converting (Parsing) Option Values</h1>
501501
<p>
502502
By in most cases the values on the command line are retrieved as Strings via the
503503
<code>commandLine.getOptionValue(key)</code> command. However, it is possible for
@@ -575,7 +575,7 @@ <h1><img src="org/apache/commons/cli/doc-files//leaf.svg" style="height: 1em; pa
575575
</p>
576576
</section>
577577
<section>
578-
<h1><img src="org/apache/commons/cli/doc-files//leaf.svg" style="height: 1em; padding-right: 0.25em" alt="leaf">Deprecating Options</h1>
578+
<h1><img src="org/apache/commons/cli/doc-files/leaf.svg" style="height: 1em; padding-right: 0.25em" alt="leaf">Deprecating Options</h1>
579579
<p>
580580
Options may be marked as deprecated using ghe <code>Option.builder.deprecated()</code> method.
581581
Additional information may be specified by passing a <code>DeprecatedAttributes</code> instance to the
@@ -729,7 +729,7 @@ <h2>Changing help format</h2>
729729
</section>
730730
</section>
731731
<section id="Properties">
732-
<h1><img src="org/apache/commons/cli/doc-files//leaf.svg" style="height: 1em; padding-right: 0.25em" alt="leaf">Defining Option Properties</h1>
732+
<h1><img src="org/apache/commons/cli/doc-files/leaf.svg" style="height: 1em; padding-right: 0.25em" alt="leaf">Defining Option Properties</h1>
733733
<p>
734734
The following are the properties that each
735735
<a href="javadocs/api-release/org/apache/commons/cli/Option.html">Option</a> has. All of these

0 commit comments

Comments
 (0)