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; *
* 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. *