From 8fef51139063c49d452118053c2109ea298d507c Mon Sep 17 00:00:00 2001 From: Trustin Lee Date: Wed, 3 Apr 2013 22:08:43 +0900 Subject: [PATCH] Fix typo --- buffer/src/main/java/io/netty/buffer/MessageBuf.java | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/buffer/src/main/java/io/netty/buffer/MessageBuf.java b/buffer/src/main/java/io/netty/buffer/MessageBuf.java index 0e2b6ada22..e5d47df8e7 100644 --- a/buffer/src/main/java/io/netty/buffer/MessageBuf.java +++ b/buffer/src/main/java/io/netty/buffer/MessageBuf.java @@ -26,7 +26,7 @@ import java.util.Queue; public interface MessageBuf extends Buf, Queue { /** - * Drain the content of te {@link MessageBuf} to the given {@link Collection}. + * Drain the content of the {@link MessageBuf} to the given {@link Collection}. * * @param c the {@link Collection} to drain the content to * @return number the number of objects which was transfered @@ -34,7 +34,7 @@ public interface MessageBuf extends Buf, Queue { int drainTo(Collection c); /** - * Drain the content of te {@link MessageBuf} to the given {@link Collection}. + * Drain the content of the {@link MessageBuf} to the given {@link Collection}. * * @param c the {@link Collection} to drain the content to * @param maxElements the max number of elements to drain