Fixed ServerBootstrap#group(EventLoopGroup, EventLoopGroup) javadoc

This commit is contained in:
Cristian 2015-02-15 12:30:20 -08:00 committed by Norman Maurer
parent 0b4d88bde5
commit e6bf1353d5

View File

@ -75,7 +75,7 @@ public class ServerBootstrap extends AbstractBootstrap<ServerBootstrap, ServerCh
/**
* Set the {@link EventLoopGroup} for the parent (acceptor) and the child (client). These
* {@link EventLoopGroup}'s are used to handle all the events and IO for {@link SocketChannel} and
* {@link EventLoopGroup}'s are used to handle all the events and IO for {@link ServerChannel} and
* {@link Channel}'s.
*/
public ServerBootstrap group(EventLoopGroup parentGroup, EventLoopGroup childGroup) {