From 28c64f147717ce09c8adccf3086545e7a4741b93 Mon Sep 17 00:00:00 2001 From: Trustin Lee Date: Tue, 14 Jul 2009 10:38:59 +0000 Subject: [PATCH] Documentation cleanup --- .../org/jboss/netty/channel/socket/http/package-info.java | 7 ++++--- 1 file changed, 4 insertions(+), 3 deletions(-) diff --git a/src/main/java/org/jboss/netty/channel/socket/http/package-info.java b/src/main/java/org/jboss/netty/channel/socket/http/package-info.java index 59d0d7ce81..ad37454041 100644 --- a/src/main/java/org/jboss/netty/channel/socket/http/package-info.java +++ b/src/main/java/org/jboss/netty/channel/socket/http/package-info.java @@ -102,14 +102,15 @@ * *
  * ClientBootstrap b = new ClientBootstrap(
- *         new HttpTunnelingClientSocketChannelFactory(new NioClientSocketChannelFactory(...)));
+ *         new HttpTunnelingClientSocketChannelFactory(
+ *                 new NioClientSocketChannelFactory(...)));
  *
  * // Configure the pipeline (or pipeline factory) here.
  * ...
  *
- * // The host name of the HTTP server.
+ * // The host name of the HTTP server
  * b.setOption("serverName", "example.com");
- * // The path to the HTTP tunneling Servlet (set to /netty-tunnel in web.xml)
+ * // The path to the HTTP tunneling Servlet, which was specified in in web.xml
  * b.setOption("serverPath", "contextPath/netty-tunnel");
  * b.connect(new InetSocketAddress("example.com", 80);
  *