Repository: mina-sshd Updated Branches: refs/heads/master f390884f9 -> 7cec20a34
[SSHD-726] org.apache.sshd.client.session.ClientSession JavaDoc has some typos Project: http://git-wip-us.apache.org/repos/asf/mina-sshd/repo Commit: http://git-wip-us.apache.org/repos/asf/mina-sshd/commit/7cec20a3 Tree: http://git-wip-us.apache.org/repos/asf/mina-sshd/tree/7cec20a3 Diff: http://git-wip-us.apache.org/repos/asf/mina-sshd/diff/7cec20a3 Branch: refs/heads/master Commit: 7cec20a34412a1a6d1dca2d350270ee42d40cdb4 Parents: f390884 Author: Denton Liu <liu.den...@gmail.com> Authored: Fri Jan 20 10:49:24 2017 +0200 Committer: Lyor Goldstein <lyor.goldst...@gmail.com> Committed: Fri Jan 20 10:49:24 2017 +0200 ---------------------------------------------------------------------- .../main/java/org/apache/sshd/client/session/ClientSession.java | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) ---------------------------------------------------------------------- http://git-wip-us.apache.org/repos/asf/mina-sshd/blob/7cec20a3/sshd-core/src/main/java/org/apache/sshd/client/session/ClientSession.java ---------------------------------------------------------------------- diff --git a/sshd-core/src/main/java/org/apache/sshd/client/session/ClientSession.java b/sshd-core/src/main/java/org/apache/sshd/client/session/ClientSession.java index a3c0d72..bac1218 100644 --- a/sshd-core/src/main/java/org/apache/sshd/client/session/ClientSession.java +++ b/sshd-core/src/main/java/org/apache/sshd/client/session/ClientSession.java @@ -54,14 +54,14 @@ import org.apache.sshd.common.util.io.NullOutputStream; import org.apache.sshd.common.util.net.SshdSocketAddress; /** - * <P>An authenticated session to a given SSH server</P> + * <P>An authenticated session to a given SSH server.</P> * * <P> * A client session is established using the {@link org.apache.sshd.client.SshClient}. * Once the session has been created, the user has to authenticate * using either {@link #addPasswordIdentity(String)} or * {@link #addPublicKeyIdentity(java.security.KeyPair)} followed by - * a call to {$link #auth()}. + * a call to {@link #auth()}. * </P> * * <P>