From b4f0b7360d1b967c76415032d1618207bd9e61bd Mon Sep 17 00:00:00 2001 From: Trustin Lee Date: Tue, 25 Aug 2009 09:13:58 +0000 Subject: [PATCH] better term --- src/main/java/org/jboss/netty/channel/Channel.java | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/src/main/java/org/jboss/netty/channel/Channel.java b/src/main/java/org/jboss/netty/channel/Channel.java index a76db8c616..c7b287adc2 100644 --- a/src/main/java/org/jboss/netty/channel/Channel.java +++ b/src/main/java/org/jboss/netty/channel/Channel.java @@ -69,9 +69,9 @@ import org.jboss.netty.channel.socket.nio.NioSocketChannelConfig; *

InterestOps

*

* A {@link Channel} has a property called {@link #getInterestOps() interestOps} - * which is similar to that of {@link SelectionKey#interestOps()}. It is - * represented as an integer value which is composed of two flags by bitwise-OR - * operation. + * which is similar to that of {@link SelectionKey#interestOps() NIO SelectionKey}. + * It is represented as a bit + * field which is composed of the two flags. *