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 c884847af9
commit d7581e5726

View File

@ -86,7 +86,7 @@ public interface Channel extends AttributeMap, Comparable<Channel> {
ChannelId id(); ChannelId id();
/** /**
* Return the {@link EventLoop} this {@link Channel} was registered too. * Return the {@link EventLoop} this {@link Channel} was registered to.
*/ */
EventLoop eventLoop(); EventLoop eventLoop();
@ -104,7 +104,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();
@ -170,7 +170,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();
@ -185,7 +185,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();