You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@maven.apache.org by kw...@apache.org on 2022/11/09 12:40:43 UTC

[maven-plugin-tools] branch master updated: javadoc: fix typo

This is an automated email from the ASF dual-hosted git repository.

kwin pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/maven-plugin-tools.git


The following commit(s) were added to refs/heads/master by this push:
     new 31a35b9f javadoc: fix typo
31a35b9f is described below

commit 31a35b9f4b0e553823eb32c160e232a191fce3b5
Author: Konrad Windszus <kw...@apache.org>
AuthorDate: Wed Nov 9 13:40:37 2022 +0100

    javadoc: fix typo
---
 .../org/apache/maven/plugin/plugin/DescriptorGeneratorMojo.java     | 6 +++---
 1 file changed, 3 insertions(+), 3 deletions(-)

diff --git a/maven-plugin-plugin/src/main/java/org/apache/maven/plugin/plugin/DescriptorGeneratorMojo.java b/maven-plugin-plugin/src/main/java/org/apache/maven/plugin/plugin/DescriptorGeneratorMojo.java
index 2ab1c18f..1527ef78 100644
--- a/maven-plugin-plugin/src/main/java/org/apache/maven/plugin/plugin/DescriptorGeneratorMojo.java
+++ b/maven-plugin-plugin/src/main/java/org/apache/maven/plugin/plugin/DescriptorGeneratorMojo.java
@@ -186,9 +186,9 @@ public class DescriptorGeneratorMojo
      * all given links should have a fetchable {@code /package-list} or {@code /element-list} file.
      * For instance:
      * <pre>
-     * &lt;links&gt;
-     *   &lt;link&gt;https://docs.oracle.com/javase/8/docs/api/&lt;/link&gt;
-     * &lt;links&gt;
+     * &lt;externalJavadocBaseUrls&gt;
+     *   &lt;externalJavadocBaseUrl&gt;https://docs.oracle.com/javase/8/docs/api/&lt;/externalJavadocBaseUrl&gt;
+     * &lt;externalJavadocBaseUrls&gt;
      * </pre>
      * is valid because <code>https://docs.oracle.com/javase/8/docs/api/package-list</code> exists.
      * See <a href="https://docs.oracle.com/en/java/javase/17/docs/specs/man/javadoc.html#standard-doclet-options">