You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@mina.apache.org by ng...@apache.org on 2008/03/23 13:24:42 UTC

svn commit: r640192 - /mina/trunk/core/src/main/java/org/apache/mina/common/IoHandler.java

Author: ngn
Date: Sun Mar 23 05:24:40 2008
New Revision: 640192

URL: http://svn.apache.org/viewvc?rev=640192&view=rev
Log:
Fixed some minor typos in Javadocs

Modified:
    mina/trunk/core/src/main/java/org/apache/mina/common/IoHandler.java

Modified: mina/trunk/core/src/main/java/org/apache/mina/common/IoHandler.java
URL: http://svn.apache.org/viewvc/mina/trunk/core/src/main/java/org/apache/mina/common/IoHandler.java?rev=640192&r1=640191&r2=640192&view=diff
==============================================================================
--- mina/trunk/core/src/main/java/org/apache/mina/common/IoHandler.java (original)
+++ mina/trunk/core/src/main/java/org/apache/mina/common/IoHandler.java Sun Mar 23 05:24:40 2008
@@ -43,7 +43,7 @@
      * Invoked when a connection has been opened.  This method is invoked after
      * {@link #sessionCreated(IoSession)}.  The biggest difference from
      * {@link #sessionCreated(IoSession)} is that it's invoked from other thread
-     * than an I/O processor thread once thread modesl is configured properly.
+     * than an I/O processor thread once thread model is configured properly.
      */
     void sessionOpened(IoSession session) throws Exception;
 
@@ -61,7 +61,7 @@
 
     /**
      * Invoked when any exception is thrown by user {@link IoHandler}
-     * implementation or by MINA.  If <code>cause</code> is instanceof
+     * implementation or by MINA.  If <code>cause</code> is an instance of
      * {@link IOException}, MINA will close the connection automatically.
      */
     void exceptionCaught(IoSession session, Throwable cause) throws Exception;