From f4ce86a12d6390f60924685d19125e7686d77f15 Mon Sep 17 00:00:00 2001 From: Trustin Lee Date: Mon, 1 Sep 2008 16:01:47 +0000 Subject: [PATCH] Disambiguation in ChannelPipelineCoverage --- .../java/org/jboss/netty/channel/ChannelPipelineCoverage.java | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/main/java/org/jboss/netty/channel/ChannelPipelineCoverage.java b/src/main/java/org/jboss/netty/channel/ChannelPipelineCoverage.java index f1f4363906..b90374a875 100644 --- a/src/main/java/org/jboss/netty/channel/ChannelPipelineCoverage.java +++ b/src/main/java/org/jboss/netty/channel/ChannelPipelineCoverage.java @@ -46,8 +46,8 @@ import java.lang.annotation.Target; * {@code "all"} means you can add the same instance of the annotated handler * type to more than one {@link ChannelPipeline}. It means the member * variables of the handler instance is shared among multiple channels and it - * is OK to do so (or there's nothing to share.) The following code shows an - * example of a handler type annotated with {@code "all"} value: + * is designed to be OK to do so (or there's nothing to share.) The following + * code shows an example of a handler type annotated with {@code "all"} value: * *
  * public class StatelessHandler extends SimpleChannelHandler {