Author: trustin
Date: Fri Apr 15 00:42:41 2005
New Revision: 161421

URL: http://svn.apache.org/viewcvs?view=rev&rev=161421
Log:
Fixed JavaDoc syntax.

Modified:
    
directory/network/trunk/src/java/org/apache/mina/protocol/ProtocolDecoder.java

Modified: 
directory/network/trunk/src/java/org/apache/mina/protocol/ProtocolDecoder.java
URL: 
http://svn.apache.org/viewcvs/directory/network/trunk/src/java/org/apache/mina/protocol/ProtocolDecoder.java?view=diff&r1=161420&r2=161421
==============================================================================
--- 
directory/network/trunk/src/java/org/apache/mina/protocol/ProtocolDecoder.java 
(original)
+++ 
directory/network/trunk/src/java/org/apache/mina/protocol/ProtocolDecoder.java 
Fri Apr 15 00:42:41 2005
@@ -37,7 +37,7 @@
 public interface ProtocolDecoder
 {
     /**
-     * Decodes binary or protocol-specific into higher-level message objects.
+     * Decodes binary or protocol-specific content into higher-level message 
objects.
      * MINA invokes [EMAIL PROTECTED] #decode(ProtocolSession, ByteBuffer, 
ProtocolDecoderOutput)}
      * method with read data, and then the decoder implementation puts decoded
      * messages into [EMAIL PROTECTED] ProtocolDecoderOutput}.
@@ -46,5 +46,5 @@
      *                                    specification 
      */
     void decode( ProtocolSession session, ByteBuffer in,
-                ProtocolDecoderOutput out ) throws ProtocolViolationException;
+                 ProtocolDecoderOutput out ) throws ProtocolViolationException;
 }


Reply via email to