From ed09fb10bc7f128aa560c7ea1acbebcea49bc42d Mon Sep 17 00:00:00 2001 From: Daniel Bevenius Date: Mon, 8 Dec 2014 13:52:54 +0100 Subject: [PATCH] Fixing minor typo in FastThreadLocal javadoc. --- .../main/java/io/netty/util/concurrent/FastThreadLocal.java | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/common/src/main/java/io/netty/util/concurrent/FastThreadLocal.java b/common/src/main/java/io/netty/util/concurrent/FastThreadLocal.java index 6a46ea8122..b9ac666a47 100644 --- a/common/src/main/java/io/netty/util/concurrent/FastThreadLocal.java +++ b/common/src/main/java/io/netty/util/concurrent/FastThreadLocal.java @@ -23,8 +23,8 @@ import java.util.IdentityHashMap; import java.util.Set; /** - * A special variant of {@link ThreadLocal} that yields to higher access performance when accessed from a - * {@link FastThreadLocalAccess} {@link Thread}. + * A special variant of {@link ThreadLocal} that yields higher access performance when accessed from a + * {@link FastThreadLocalThread}. *

* Internally, a {@link FastThreadLocal} uses a constant index in an array, instead of using hash code and hash table, * to look for a variable. Although seemingly very subtle, it yields slight performance advantage over using a hash