Skip to content

Commit

Permalink
Small typos fixes in Channel's Javadoc
Browse files Browse the repository at this point in the history
  • Loading branch information
pdalpra authored and normanmaurer committed Mar 21, 2015
1 parent 8e04d70 commit 2ebf07e
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions transport/src/main/java/io/netty/channel/Channel.java
Original file line number Diff line number Diff line change
Expand Up @@ -85,7 +85,7 @@ public interface Channel extends AttributeMap, Comparable<Channel> {
ChannelId id();

/**
* Return the {@link EventLoop} this {@link Channel} was registered too.
* Return the {@link EventLoop} this {@link Channel} was registered to.
*/
EventLoop eventLoop();

Expand All @@ -103,7 +103,7 @@ public interface Channel extends AttributeMap, Comparable<Channel> {
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();

Expand Down Expand Up @@ -169,7 +169,7 @@ public interface Channel extends AttributeMap, Comparable<Channel> {
Unsafe unsafe();

/**
* Return the assigned {@link ChannelPipeline}
* Return the assigned {@link ChannelPipeline}.
*/
ChannelPipeline pipeline();

Expand All @@ -184,7 +184,7 @@ public interface Channel extends AttributeMap, Comparable<Channel> {
ChannelPromise newPromise();

/**
* Return an new {@link ChannelProgressivePromise}
* Return an new {@link ChannelProgressivePromise}.
*/
ChannelProgressivePromise newProgressivePromise();

Expand Down

0 comments on commit 2ebf07e

Please sign in to comment.