Small typos fixes in Channel's Javadoc

This commit is contained in:
Pierre DAL-PRA 2015-03-20 16:42:40 +01:00 committed by Norman Maurer
parent f78c384fec
commit 2221dc6b20

View File

@ -80,7 +80,7 @@ import java.net.SocketAddress;
public interface Channel extends AttributeMap, Comparable<Channel> { public interface Channel extends AttributeMap, Comparable<Channel> {
/** /**
* Return the {@link EventLoop} this {@link Channel} was registered too. * Return the {@link EventLoop} this {@link Channel} was registered to.
*/ */
EventLoop eventLoop(); EventLoop eventLoop();
@ -98,7 +98,7 @@ public interface Channel extends AttributeMap, Comparable<Channel> {
ChannelConfig config(); ChannelConfig config();
/** /**
* Returns {@code true} if the {@link Channel} is open an may get active later * Returns {@code true} if the {@link Channel} is open and may get active later
*/ */
boolean isOpen(); boolean isOpen();
@ -164,7 +164,7 @@ public interface Channel extends AttributeMap, Comparable<Channel> {
Unsafe unsafe(); Unsafe unsafe();
/** /**
* Return the assigned {@link ChannelPipeline} * Return the assigned {@link ChannelPipeline}.
*/ */
ChannelPipeline pipeline(); ChannelPipeline pipeline();
@ -179,7 +179,7 @@ public interface Channel extends AttributeMap, Comparable<Channel> {
ChannelPromise newPromise(); ChannelPromise newPromise();
/** /**
* Return an new {@link ChannelProgressivePromise} * Return an new {@link ChannelProgressivePromise}.
*/ */
ChannelProgressivePromise newProgressivePromise(); ChannelProgressivePromise newProgressivePromise();