From 07c720ad2c4dbe4a3d0e744cb437feaccc516cc0 Mon Sep 17 00:00:00 2001 From: Trustin Lee Date: Wed, 4 Mar 2009 14:27:20 +0000 Subject: [PATCH] Typo --- src/main/java/org/jboss/netty/channel/ChannelFuture.java | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/src/main/java/org/jboss/netty/channel/ChannelFuture.java b/src/main/java/org/jboss/netty/channel/ChannelFuture.java index d98e23f658..c15cfa1f30 100644 --- a/src/main/java/org/jboss/netty/channel/ChannelFuture.java +++ b/src/main/java/org/jboss/netty/channel/ChannelFuture.java @@ -31,7 +31,7 @@ import java.util.concurrent.TimeUnit; * return immediately with no guarantee that the requested I/O operation has * been completed at the end of the call. Instead, you will be returned with * a {@link ChannelFuture} instance which tells you when the requested I/O - * operation has succeeded, failed, or canceled. + * operation has succeeded, failed, or cancelled. *

* Various methods are provided to let you check if the I/O operation has been * completed, wait for the completion, and retrieve the result of the I/O @@ -57,13 +57,13 @@ public interface ChannelFuture { /** * Returns {@code true} if and only if this future is * complete, regardless of whether the operation was successful, failed, - * or canceled. + * or cancelled. */ boolean isDone(); /** * Returns {@code true} if and only if this future was - * canceled by a {@link #cancel()} method. + * cancelled by a {@link #cancel()} method. */ boolean isCancelled();