IllealRefCountException should be IllegalReferenceCountException, fix typos

Motivation:

Typos in javadoc, in "combine" and "recommendations", IllegalReferenceCountException

Modification:

Rename incorrect reference, typos are modified

Result:

Reference is correct, typos are fixed
This commit is contained in:
Alex Petrov 2015-12-31 14:44:51 +01:00 committed by Norman Maurer
parent 8716b9d4bd
commit 78c4bd474e
4 changed files with 4 additions and 4 deletions

View File

@ -28,7 +28,7 @@ public class DefaultFullHttpRequest extends DefaultHttpRequest implements FullHt
private final HttpHeaders trailingHeader; private final HttpHeaders trailingHeader;
/** /**
* Used to cache the value of the hash code and avoid {@link IllegalRefCountException}. * Used to cache the value of the hash code and avoid {@link IllegalReferenceCountException}.
*/ */
private int hash; private int hash;

View File

@ -30,7 +30,7 @@ public class DefaultFullHttpResponse extends DefaultHttpResponse implements Full
private final HttpHeaders trailingHeaders; private final HttpHeaders trailingHeaders;
/** /**
* Used to cache the value of the hash code and avoid {@link IllegalRefCountException}. * Used to cache the value of the hash code and avoid {@link IllegalReferenceCountException}.
*/ */
private int hash; private int hash;

View File

@ -18,7 +18,7 @@ package io.netty.handler.codec.http;
import io.netty.buffer.ByteBuf; import io.netty.buffer.ByteBuf;
/** /**
* Combinate the {@link HttpRequest} and {@link FullHttpMessage}, so the request is a <i>complete</i> HTTP * Combine the {@link HttpRequest} and {@link FullHttpMessage}, so the request is a <i>complete</i> HTTP
* request. * request.
*/ */
public interface FullHttpRequest extends HttpRequest, FullHttpMessage { public interface FullHttpRequest extends HttpRequest, FullHttpMessage {

View File

@ -61,7 +61,7 @@ public class HttpPostRequestEncoder implements ChunkedInput<HttpContent> {
public enum EncoderMode { public enum EncoderMode {
/** /**
* Legacy mode which should work for most. It is known to not work with OAUTH. For OAUTH use * Legacy mode which should work for most. It is known to not work with OAUTH. For OAUTH use
* {@link EncoderMode#RFC3986}. The W3C form recommentations this for submitting post form data. * {@link EncoderMode#RFC3986}. The W3C form recommendations this for submitting post form data.
*/ */
RFC1738, RFC1738,