diff --git a/src/main/java/org/jboss/netty/bootstrap/ClientBootstrap.java b/src/main/java/org/jboss/netty/bootstrap/ClientBootstrap.java index 7b1c41ced3..4d751e0cb1 100644 --- a/src/main/java/org/jboss/netty/bootstrap/ClientBootstrap.java +++ b/src/main/java/org/jboss/netty/bootstrap/ClientBootstrap.java @@ -235,7 +235,7 @@ public class ClientBootstrap extends Bootstrap { * to a remoteAddress by calling {@link Channel#connect(SocketAddress)}.This method is useful where bind and connect * need to be done in separate steps. * - * This can also be useful if you want to set and attachment to the {@link Channel} via + * This can also be useful if you want to set an attachment to the {@link Channel} via * {@link Channel#setAttachment(Object)} so you can use it after the {@link #bind(SocketAddress)} was done. *
* For example: