Skip to content

Commit 812594f

Browse files
committed
Fixed links to Javadoc (closes CLI-248).
git-svn-id: https://svn.apache.org/repos/asf/commons/proper/cli/trunk@1671849 13f79535-47bb-0310-9956-ffa450edef68
1 parent b207a2b commit 812594f

2 files changed

Lines changed: 7 additions & 4 deletions

File tree

src/changes/changes.xml

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -23,6 +23,9 @@
2323
<body>
2424

2525
<release version="1.3" date="in SVN" description="This is a feature and maintenance bug fix release.">
26+
<action type="fix" dev="djones" issue="CLI-248">
27+
Fixed broken Javadoc links on Introduction page.
28+
</action>
2629
<action type="fix" dev="tn" issue="CLI-234" due-to="Greg Thomas">
2730
Fixed code example in javadoc of "Option#Builder#valueSeparator(char)".
2831
</action>

src/site/xdoc/introduction.xml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -39,9 +39,9 @@
3939
to define the interface to the application.
4040
</p>
4141
<p>
42-
CLI uses the <a href="api-release/org/apache/commons/cli/Options.html">
42+
CLI uses the <a href="javadocs/api-release/org/apache/commons/cli/Options.html">
4343
Options</a> class, as a container for
44-
<a href="api-release/org/apache/commons/cli/Option.html">
44+
<a href="javadocs/api-release/org/apache/commons/cli/Option.html">
4545
Option</a> instances. There are two ways to create
4646
<code>Option</code>s in CLI. One of them is via the constructors,
4747
the other way is via the factory methods defined in
@@ -66,11 +66,11 @@
6666
</p>
6767
<p>
6868
The <code>parse</code> method defined on
69-
<a href="api-release/org/apache/commons/cli/CommandLineParser.html">
69+
<a href="javadocs/api-release/org/apache/commons/cli/CommandLineParser.html">
7070
CommandLineParser</a> takes an <code>Options</code>
7171
instance and a <code>String[]</code> of arguments and
7272
returns a
73-
<a href="api-release/org/apache/commons/cli/CommandLine.html">
73+
<a href="javadocs/api-release/org/apache/commons/cli/CommandLine.html">
7474
CommandLine</a>.
7575
</p>
7676
<p>

0 commit comments

Comments
 (0)