Skip to content

Commit 78c4bd4

Browse files
ifesdjeennormanmaurer
authored andcommitted
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
1 parent 8716b9d commit 78c4bd4

File tree

4 files changed

+4
-4
lines changed

4 files changed

+4
-4
lines changed

codec-http/src/main/java/io/netty/handler/codec/http/DefaultFullHttpRequest.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,7 @@ public class DefaultFullHttpRequest extends DefaultHttpRequest implements FullHt
2828
private final HttpHeaders trailingHeader;
2929

3030
/**
31-
* Used to cache the value of the hash code and avoid {@link IllegalRefCountException}.
31+
* Used to cache the value of the hash code and avoid {@link IllegalReferenceCountException}.
3232
*/
3333
private int hash;
3434

codec-http/src/main/java/io/netty/handler/codec/http/DefaultFullHttpResponse.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -30,7 +30,7 @@ public class DefaultFullHttpResponse extends DefaultHttpResponse implements Full
3030
private final HttpHeaders trailingHeaders;
3131

3232
/**
33-
* Used to cache the value of the hash code and avoid {@link IllegalRefCountException}.
33+
* Used to cache the value of the hash code and avoid {@link IllegalReferenceCountException}.
3434
*/
3535
private int hash;
3636

codec-http/src/main/java/io/netty/handler/codec/http/FullHttpRequest.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@
1818
import io.netty.buffer.ByteBuf;
1919

2020
/**
21-
* Combinate the {@link HttpRequest} and {@link FullHttpMessage}, so the request is a <i>complete</i> HTTP
21+
* Combine the {@link HttpRequest} and {@link FullHttpMessage}, so the request is a <i>complete</i> HTTP
2222
* request.
2323
*/
2424
public interface FullHttpRequest extends HttpRequest, FullHttpMessage {

codec-http/src/main/java/io/netty/handler/codec/http/multipart/HttpPostRequestEncoder.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -61,7 +61,7 @@ public class HttpPostRequestEncoder implements ChunkedInput<HttpContent> {
6161
public enum EncoderMode {
6262
/**
6363
* Legacy mode which should work for most. It is known to not work with OAUTH. For OAUTH use
64-
* {@link EncoderMode#RFC3986}. The W3C form recommentations this for submitting post form data.
64+
* {@link EncoderMode#RFC3986}. The W3C form recommendations this for submitting post form data.
6565
*/
6666
RFC1738,
6767

0 commit comments

Comments
 (0)