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 f8f58cd734
commit ec0f2cb55d
2 changed files with 3 additions and 3 deletions

View File

@ -16,7 +16,7 @@
package io.netty.handler.codec.http;
/**
* 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.
*/
public interface FullHttpRequest extends HttpRequest, FullHttpMessage {

View File

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