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

[maven-artifact-transfer] branch elharo-patch-1 created (now c1dd945)

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

elharo pushed a change to branch elharo-patch-1
in repository https://gitbox.apache.org/repos/asf/maven-artifact-transfer.git.


      at c1dd945  docs: fix minor doc comment issues

This branch includes the following new commits:

     new c1dd945  docs: fix minor doc comment issues

The 1 revisions listed above as "new" are entirely new to this
repository and will be described in separate emails.  The revisions
listed as "add" were already present in the repository and have only
been added to this reference.



[maven-artifact-transfer] 01/01: docs: fix minor doc comment issues

Posted by el...@apache.org.
This is an automated email from the ASF dual-hosted git repository.

elharo pushed a commit to branch elharo-patch-1
in repository https://gitbox.apache.org/repos/asf/maven-artifact-transfer.git

commit c1dd945ca4f3013cab0cbd4910d49a1935d857df
Author: Elliotte Rusty Harold <el...@users.noreply.github.com>
AuthorDate: Sat Jun 6 07:54:01 2020 -0400

    docs: fix minor doc comment issues
---
 .../org/apache/maven/shared/transfer/graph/DependencyNode.java    | 8 ++++----
 1 file changed, 4 insertions(+), 4 deletions(-)

diff --git a/src/main/java/org/apache/maven/shared/transfer/graph/DependencyNode.java b/src/main/java/org/apache/maven/shared/transfer/graph/DependencyNode.java
index aeec86c..f18f9dd 100644
--- a/src/main/java/org/apache/maven/shared/transfer/graph/DependencyNode.java
+++ b/src/main/java/org/apache/maven/shared/transfer/graph/DependencyNode.java
@@ -25,7 +25,7 @@ import org.apache.maven.artifact.Artifact;
 import org.apache.maven.artifact.repository.ArtifactRepository;
 
 /**
- * Represents an dependency node within a Maven project's dependency collector.
+ * Represents a dependency node within a Maven project's dependency collector.
  *
  * @author Pim Moerenhout
  * @since 0.12
@@ -35,17 +35,17 @@ public interface DependencyNode
     /**
      * Gets the child nodes of this node.
      *
-     * @return The child nodes of this node, never {@code null}.
+     * @return the child nodes of this node, never {@code null}
      */
     List<DependencyNode> getChildren();
 
     /**
-     * @return Artifact for this DependencyCollectorNode.
+     * @return artifact for this DependencyCollectorNode
      */
     Artifact getArtifact();
 
     /**
-     * @return Repositories of this DependencyCollectorNode.
+     * @return repositories of this DependencyCollectorNode
      */
     List<ArtifactRepository> getRemoteRepositories();