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

[maven-javadoc-plugin] branch master updated: Fixed a typo in AbstractJavadocMojo (#175)

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

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


The following commit(s) were added to refs/heads/master by this push:
     new 73557e33 Fixed a typo in AbstractJavadocMojo (#175)
73557e33 is described below

commit 73557e337eb556fb628823594cf387bf64ef22f5
Author: Emmanuel Bourg <eb...@apache.org>
AuthorDate: Tue Dec 6 12:21:29 2022 +0100

    Fixed a typo in AbstractJavadocMojo (#175)
---
 src/main/java/org/apache/maven/plugins/javadoc/AbstractJavadocMojo.java | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/src/main/java/org/apache/maven/plugins/javadoc/AbstractJavadocMojo.java b/src/main/java/org/apache/maven/plugins/javadoc/AbstractJavadocMojo.java
index 8c2a48ff..4a9bb04d 100644
--- a/src/main/java/org/apache/maven/plugins/javadoc/AbstractJavadocMojo.java
+++ b/src/main/java/org/apache/maven/plugins/javadoc/AbstractJavadocMojo.java
@@ -3807,7 +3807,7 @@ public abstract class AbstractJavadocMojo
         // to the javadoc command is ../bin/javadoc.
         //
         // In Java 9 and above the JRE is no longer in a subdirectory of the
-        // JDK, i.e. the JDK and the JDK are merged. In this case the java
+        // JDK, i.e. the JRE and the JDK are merged. In this case the java
         // command is installed to my-dir/bin/java along side the javadoc
         // command. So the relative path from "java.home" to the javadoc
         // command is bin/javadoc.