Skip to content

Commit

Permalink
[doc] Update sources references in the reference documentation
Browse files Browse the repository at this point in the history
  • Loading branch information
violetagg committed Oct 7, 2024
1 parent 10bbca5 commit e677444
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion docs/asciidoc/http-client.adoc
Original file line number Diff line number Diff line change
Expand Up @@ -198,7 +198,7 @@ By default, the `HTTP` client is configured with the following settings:
[source,java,indent=0]
.{sourcedir}/reactor/netty/http/HttpDecoderSpec.java
----
include::{sourcedir}/reactor/netty/http/HttpDecoderSpec.java[lines=28..39]
include::{sourcedir}/reactor/netty/http/HttpDecoderSpec.java[lines=28..40]
----
====
====
Expand Down
4 changes: 2 additions & 2 deletions docs/asciidoc/http-server.adoc
Original file line number Diff line number Diff line change
Expand Up @@ -315,14 +315,14 @@ By default, the `HTTP` server is configured with the following settings:
[source,java,indent=0]
.{sourcedir}/reactor/netty/http/HttpDecoderSpec.java
----
include::{sourcedir}/reactor/netty/http/HttpDecoderSpec.java[lines=28..39]
include::{sourcedir}/reactor/netty/http/HttpDecoderSpec.java[lines=28..40]
----
====
====
[source,java,indent=0]
.{sourcedir}/reactor/netty/http/server/HttpRequestDecoderSpec.java
----
include::{sourcedir}/reactor/netty/http/server/HttpRequestDecoderSpec.java[lines=41..46]
include::{sourcedir}/reactor/netty/http/server/HttpRequestDecoderSpec.java[lines=42..47]
----
====

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -37,7 +37,7 @@ public abstract class HttpDecoderSpec<T extends HttpDecoderSpec<T>> implements S
public static final boolean DEFAULT_VALIDATE_HEADERS = true;
public static final int DEFAULT_INITIAL_BUFFER_SIZE = 128;
public static final boolean DEFAULT_ALLOW_DUPLICATE_CONTENT_LENGTHS = false;
public static final boolean DEFAULT_ALLOW_PARTIAL_CHUNKS = true;
public static final boolean DEFAULT_ALLOW_PARTIAL_CHUNKS = true;

protected int maxInitialLineLength = DEFAULT_MAX_INITIAL_LINE_LENGTH;
protected int maxHeaderSize = DEFAULT_MAX_HEADER_SIZE;
Expand Down

0 comments on commit e677444

Please sign in to comment.