ClientBoostrap#bind() Javadoc fix. See #588

This commit is contained in:
Norman Maurer 2012-09-10 05:32:12 +02:00
parent c534864e3f
commit 051b062530

View File

@ -245,7 +245,7 @@ public class ClientBootstrap extends Bootstrap {
* ChannelFuture bindFuture = bootstrap.bind(new InetSocketAddress("192.168.0.15", 0));
* Channel channel = bindFuture.getChannel();
* channel.setAttachment(dataObj);
* bootstrap.connect(new InetSocketAddress("192.168.0.30", 8080));
* channel.connect(new InetSocketAddress("192.168.0.30", 8080));
* </pre>
* <br>
*