aboutsummaryrefslogtreecommitdiffstats
path: root/lib/src/main/java/com/trilead/ssh2/Session.java
diff options
context:
space:
mode:
authorKenny Root <kenny@the-b.org>2015-07-18 10:13:58 -0700
committerKenny Root <kenny@the-b.org>2015-07-18 10:13:58 -0700
commit1ab1c0412b38b6d361c3271650afa9f6ee7e5019 (patch)
tree4910056683f3a8a3f23200b4bb0800023743a1a6 /lib/src/main/java/com/trilead/ssh2/Session.java
parent85ce71ea98f56964b3ead2478dcba8d1d10901b6 (diff)
downloadsshlib-1ab1c0412b38b6d361c3271650afa9f6ee7e5019.tar.gz
sshlib-1ab1c0412b38b6d361c3271650afa9f6ee7e5019.tar.bz2
sshlib-1ab1c0412b38b6d361c3271650afa9f6ee7e5019.zip
Fix various javadoc errors
Diffstat (limited to 'lib/src/main/java/com/trilead/ssh2/Session.java')
-rw-r--r--lib/src/main/java/com/trilead/ssh2/Session.java6
1 files changed, 3 insertions, 3 deletions
diff --git a/lib/src/main/java/com/trilead/ssh2/Session.java b/lib/src/main/java/com/trilead/ssh2/Session.java
index bf3c7e0..9c84004 100644
--- a/lib/src/main/java/com/trilead/ssh2/Session.java
+++ b/lib/src/main/java/com/trilead/ssh2/Session.java
@@ -442,8 +442,8 @@ public class Session
* This method returns as soon as one of the following happens:
* <ul>
* <li>at least of the specified conditions (see {@link ChannelCondition}) holds true</li>
- * <li>timeout > 0 and a timeout occured (TIMEOUT will be set in result conditions)</a>
- * <li>the underlying channel was closed (CLOSED will be set in result conditions)</a>
+ * <li>timeout &gt; 0 and a timeout occured (TIMEOUT will be set in result conditions)</li>
+ * <li>the underlying channel was closed (CLOSED will be set in result conditions)</li>
* </ul>
* <p>
* In any case, the result value contains ALL current conditions, which may be more
@@ -472,7 +472,7 @@ public class Session
* Get the exit code/status from the remote command - if available. Be
* careful - not all server implementations return this value. It is
* generally a good idea to call this method only when all data from the
- * remote side has been consumed (see also the <code<WaitForCondition</code> method).
+ * remote side has been consumed (see also the <code>WaitForCondition</code> method).
*
* @return An <code>Integer</code> holding the exit code, or
* <code>null</code> if no exit code is (yet) available.