Skip to content

Commit

Permalink
ReadTimeoutHandler - missing ) within JavaDoc example (netty#8645)
Browse files Browse the repository at this point in the history
Motivation:

improve docs

Modification:

ReadTimeoutHandler - missing ) within JavaDoc example

No logic/unit tests affected
  • Loading branch information
Paul Verest authored and normanmaurer committed Dec 10, 2018
1 parent bdcad8e commit 25216be
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,7 @@
*
* public class MyChannelInitializer extends {@link ChannelInitializer}<{@link Channel}> {
* public void initChannel({@link Channel} channel) {
* channel.pipeline().addLast("readTimeoutHandler", new {@link ReadTimeoutHandler}(30);
* channel.pipeline().addLast("readTimeoutHandler", new {@link ReadTimeoutHandler}(30));
* channel.pipeline().addLast("myHandler", new MyHandler());
* }
* }
Expand Down

0 comments on commit 25216be

Please sign in to comment.