Typo in comments

This commit is contained in:
Trustin Lee 2009-02-11 05:36:37 +00:00
parent 10a07b054e
commit d966ae57fc

View File

@ -149,7 +149,7 @@ public class ReadTimeoutHandler extends SimpleChannelUpstreamHandler implements
timer.newTimeout(this, timeoutMillis, TimeUnit.MILLISECONDS);
Channels.fireExceptionCaught(ctx, EXCEPTION);
} else {
// Read occurred before the timer - set a new timeout with shorter delay.
// Read occurred before the timeout - set a new timeout with shorter delay.
ReadTimeoutHandler.this.timeout =
timer.newTimeout(this, nextDelay, TimeUnit.MILLISECONDS);
}