You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@mina.apache.org by lg...@apache.org on 2018/05/04 13:48:04 UTC

mina-sshd git commit: Fixed Javadoc spelling error for Factory class

Repository: mina-sshd
Updated Branches:
  refs/heads/master 86dd44044 -> 0cfb7be85


Fixed Javadoc spelling error for Factory class


Project: http://git-wip-us.apache.org/repos/asf/mina-sshd/repo
Commit: http://git-wip-us.apache.org/repos/asf/mina-sshd/commit/0cfb7be8
Tree: http://git-wip-us.apache.org/repos/asf/mina-sshd/tree/0cfb7be8
Diff: http://git-wip-us.apache.org/repos/asf/mina-sshd/diff/0cfb7be8

Branch: refs/heads/master
Commit: 0cfb7be854677b70a2d8380314a74ea9efe74166
Parents: 86dd440
Author: Randolf Richardson <ra...@richardson.tw>
Authored: Fri May 4 16:51:37 2018 +0300
Committer: Lyor Goldstein <ly...@gmail.com>
Committed: Fri May 4 16:51:37 2018 +0300

----------------------------------------------------------------------
 sshd-core/src/main/java/org/apache/sshd/common/Factory.java | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/mina-sshd/blob/0cfb7be8/sshd-core/src/main/java/org/apache/sshd/common/Factory.java
----------------------------------------------------------------------
diff --git a/sshd-core/src/main/java/org/apache/sshd/common/Factory.java b/sshd-core/src/main/java/org/apache/sshd/common/Factory.java
index 7200ff4..93b351c 100644
--- a/sshd-core/src/main/java/org/apache/sshd/common/Factory.java
+++ b/sshd-core/src/main/java/org/apache/sshd/common/Factory.java
@@ -23,7 +23,7 @@ import java.util.function.Supplier;
 /**
  * Factory is a simple interface that is used to create other objects.
  *
- * @param <T> type of objets this factory will create
+ * @param <T> type of object this factory will create
  * @author <a href="mailto:dev@mina.apache.org">Apache MINA SSHD Project</a>
  */
 @FunctionalInterface