diff --git a/common/src/main/java/io/netty/util/concurrent/EventExecutor.java b/common/src/main/java/io/netty/util/concurrent/EventExecutor.java index 4f8f94a664..dc307cf998 100644 --- a/common/src/main/java/io/netty/util/concurrent/EventExecutor.java +++ b/common/src/main/java/io/netty/util/concurrent/EventExecutor.java @@ -67,14 +67,14 @@ public interface EventExecutor extends EventExecutorGroup { ProgressivePromise newProgressivePromise(); /** - * Create a new {@link Future} which is marked as successes already. So {@link Future#isSuccess()} + * Create a new {@link Future} which is marked as succeeded already. So {@link Future#isSuccess()} * will return {@code true}. All {@link FutureListener} added to it will be notified directly. Also * every call of blocking methods will just return without blocking. */ Future newSucceededFuture(V result); /** - * Create a new {@link Future} which is marked as fakued already. So {@link Future#isSuccess()} + * Create a new {@link Future} which is marked as failed already. So {@link Future#isSuccess()} * will return {@code false}. All {@link FutureListener} added to it will be notified directly. Also * every call of blocking methods will just return without blocking. */