This is an automated email from the ASF dual-hosted git repository.

elecharny pushed a commit to branch 2.0.X
in repository https://gitbox.apache.org/repos/asf/mina.git

commit 080075859f93b31af46609f8fce52cea04deae9a
Author: emmanuel lecharny <elecha...@apache.org>
AuthorDate: Wed Sep 6 23:23:44 2023 +0200

    Fixed some javadopc errors
---
 mina-core/src/main/java/org/apache/mina/core/buffer/IoBuffer.java       | 2 +-
 .../java/org/apache/mina/filter/codec/CumulativeProtocolDecoder.java    | 2 +-
 2 files changed, 2 insertions(+), 2 deletions(-)

diff --git a/mina-core/src/main/java/org/apache/mina/core/buffer/IoBuffer.java 
b/mina-core/src/main/java/org/apache/mina/core/buffer/IoBuffer.java
index b2cc61905..cbda630f6 100644
--- a/mina-core/src/main/java/org/apache/mina/core/buffer/IoBuffer.java
+++ b/mina-core/src/main/java/org/apache/mina/core/buffer/IoBuffer.java
@@ -84,7 +84,7 @@ import org.apache.mina.core.session.IoSession;
  * <p>
  *   Writing variable-length data using NIO {@code ByteBuffers} is not really
  *   easy, and it is because its size is fixed at allocation. {@link IoBuffer} 
introduces
- *   the {@code autoExpand} property. If {@codeautoExpand} property is set to 
true, 
+ *   the {@code autoExpand} property. If {@code autoExpand} property is set to 
true, 
  *   you never get a {@link BufferOverflowException} or
  *   an {@link IndexOutOfBoundsException} (except when index is negative). It
  *   automatically expands its capacity. For instance:
diff --git 
a/mina-core/src/main/java/org/apache/mina/filter/codec/CumulativeProtocolDecoder.java
 
b/mina-core/src/main/java/org/apache/mina/filter/codec/CumulativeProtocolDecoder.java
index 7255d6638..dfe3be93d 100644
--- 
a/mina-core/src/main/java/org/apache/mina/filter/codec/CumulativeProtocolDecoder.java
+++ 
b/mina-core/src/main/java/org/apache/mina/filter/codec/CumulativeProtocolDecoder.java
@@ -118,7 +118,7 @@ public abstract class CumulativeProtocolDecoder extends 
ProtocolDecoderAdapter {
      * Cumulates content of {@code in} into internal buffer and forwards
      * decoding request to
      * doDecode(IoSession, IoBuffer, ProtocolDecoderOutput).
-     * {@code doDecode() is invoked repeatedly until it returns {@code false}
+     * {@code doDecode()} is invoked repeatedly until it returns {@code false}
      * and the cumulative buffer is compacted after decoding ends.
      *
      * @throws IllegalStateException

Reply via email to