Fix typo in BufType javadoc

This commit is contained in:
Adam Vandenberg 2013-03-28 15:49:35 -07:00 committed by Trustin Lee
parent c2cd99d90c
commit 8e23ab6886
2 changed files with 2 additions and 2 deletions

View File

@ -20,7 +20,7 @@ package io.netty.buffer;
*/
public enum BufType {
/**
* Operates one bytes.
* Operates on bytes.
*/
BYTE,

View File

@ -64,7 +64,7 @@ final class DefaultChannelHandlerContext extends DefaultAttributeMap implements
// 'bridge' so that the two handlers access each other's buffer only via the bridges.
// The content written into a bridge is flushed into the actual buffer by flushBridge().
//
// Note we use an AtomicReferenceFieldUpdater for atomic operations on these to safe memory. This will safe us
// Note we use an AtomicReferenceFieldUpdater for atomic operations on these to save memory. This will save us
// 64 bytes per Bridge.
@SuppressWarnings("UnusedDeclaration")
private volatile MessageBridge inMsgBridge;