From ff8f80a008e473d3626712a24e62de0ff6932511 Mon Sep 17 00:00:00 2001 From: Jestan Nirojan Date: Sat, 26 May 2012 17:09:26 +0530 Subject: [PATCH] Minor Java Doc parameter fix --- .../java/io/netty/channel/socket/nio/AbstractNioWorkerPool.java | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/transport/src/main/java/io/netty/channel/socket/nio/AbstractNioWorkerPool.java b/transport/src/main/java/io/netty/channel/socket/nio/AbstractNioWorkerPool.java index ce1e314eb9..3c28294af6 100644 --- a/transport/src/main/java/io/netty/channel/socket/nio/AbstractNioWorkerPool.java +++ b/transport/src/main/java/io/netty/channel/socket/nio/AbstractNioWorkerPool.java @@ -39,7 +39,7 @@ public abstract class AbstractNioWorkerPool impleme * Create a new instance * * @param workerExecutor the {@link Executor} to use for the {@link Worker}'s - * @param allowShutdownOnIdle allow the {@link Worker}'s to shutdown when there is not {@link Channel} is registered with it + * @param allowShutDownOnIdle allow the {@link Worker}'s to shutdown when there is not {@link Channel} is registered with it * @param workerCount the count of {@link Worker}'s to create */ protected AbstractNioWorkerPool(Executor workerExecutor, int workerCount, boolean allowShutDownOnIdle) {