From 96656564dc3cf8ecebb2538b74a3cef9f5bf75ff Mon Sep 17 00:00:00 2001 From: Daniel Bevenius Date: Sun, 23 Mar 2014 16:29:51 +0100 Subject: [PATCH] Fixing spelling/typo in javadocs for EventExecutor. Motivation: Minor spelling/typo correction for EventExecutor's newSucceededFuture and newFailedFuture javadocs. Modifications: Just correcting the spelling/typo. Result: Improve the javadocs. --- .../src/main/java/io/netty/util/concurrent/EventExecutor.java | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) 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. */