You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@maven.apache.org by hb...@apache.org on 2018/08/20 09:25:09 UTC

[maven] branch master updated: fixed typo + little javadoc improvements

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

hboutemy pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/maven.git


The following commit(s) were added to refs/heads/master by this push:
     new 1f83d50  fixed typo + little javadoc improvements
1f83d50 is described below

commit 1f83d50db261f53b984b0f34a7a3bdb2e97543c3
Author: Hervé Boutemy <hb...@apache.org>
AuthorDate: Mon Aug 20 11:25:07 2018 +0200

    fixed typo + little javadoc improvements
---
 .../org/apache/maven/artifact/handler/ArtifactHandler.java     | 10 +++++-----
 1 file changed, 5 insertions(+), 5 deletions(-)

diff --git a/maven-artifact/src/main/java/org/apache/maven/artifact/handler/ArtifactHandler.java b/maven-artifact/src/main/java/org/apache/maven/artifact/handler/ArtifactHandler.java
index 82d4ae0..cd07d8a 100644
--- a/maven-artifact/src/main/java/org/apache/maven/artifact/handler/ArtifactHandler.java
+++ b/maven-artifact/src/main/java/org/apache/maven/artifact/handler/ArtifactHandler.java
@@ -20,8 +20,8 @@ package org.apache.maven.artifact.handler;
  */
 
 /**
- * An artifact handler defies for one type (defined as Plexus role):<ul>
- * <li>extension and classifier to be able to download the file,</li>
+ * An artifact handler defines for a dependency type, defined as Plexus role:<ul>
+ * <li>extension and classifier, to be able to download the file,</li>
  * <li>information on how to use the artifact: whether to add it to the classpath, or to take into account its
  * dependencies.</li>
  * </ul>
@@ -33,16 +33,16 @@ public interface ArtifactHandler
     String ROLE = ArtifactHandler.class.getName();
 
     /**
-     * Get the file extension associated to the type of artifact.
+     * Get the file extension associated to the file represented by the dependency type.
      *
-     * @return the extension
+     * @return the file extension
      */
     String getExtension();
 
     String getDirectory();
 
     /**
-     * Get the classifier associated to the type of artifact.
+     * Get the classifier associated to the dependency type.
      * 
      * @return the classifier
      */