From e11e0f7ed584fa4868ea09ee63db2048d0123605 Mon Sep 17 00:00:00 2001 From: Trustin Lee Date: Mon, 1 Sep 2008 09:27:53 +0000 Subject: [PATCH] Grammar --- src/main/java/org/jboss/netty/bootstrap/Bootstrap.java | 2 +- src/main/java/org/jboss/netty/bootstrap/ServerBootstrap.java | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/src/main/java/org/jboss/netty/bootstrap/Bootstrap.java b/src/main/java/org/jboss/netty/bootstrap/Bootstrap.java index 2e17e6df2c..a4ccad2a1b 100644 --- a/src/main/java/org/jboss/netty/bootstrap/Bootstrap.java +++ b/src/main/java/org/jboss/netty/bootstrap/Bootstrap.java @@ -38,7 +38,7 @@ import org.jboss.netty.util.MapUtil; /** * Helper class which helps a user initialize a {@link Channel}. This class - * provides the common data structure for its subclasses which implements an + * provides the common data structure for its subclasses which implement an * actual channel initialization from the common data structure. Please refer * to {@link ClientBootstrap} and {@link ServerBootstrap} for client side and * server-side channel initialization respectively. diff --git a/src/main/java/org/jboss/netty/bootstrap/ServerBootstrap.java b/src/main/java/org/jboss/netty/bootstrap/ServerBootstrap.java index f61da9c49e..b75932acae 100644 --- a/src/main/java/org/jboss/netty/bootstrap/ServerBootstrap.java +++ b/src/main/java/org/jboss/netty/bootstrap/ServerBootstrap.java @@ -57,7 +57,7 @@ import org.jboss.netty.channel.SimpleChannelHandler; * {@link #bind()} and {@link #bind(SocketAddress)}. *

* Once successfully bound, the parent channel starts to accept incoming - * connections, and the accepted connections becomes the children of the + * connections, and the accepted connections become the children of the * parent channel. * *

Configuring channels