Browse Source

Remove rogue semicolon

pull/25999/head
Aakarshit Uppal 4 years ago committed by Rossen Stoyanchev
parent
commit
44239b2d7b
  1. 2
      src/docs/asciidoc/web/webflux-webclient.adoc

2
src/docs/asciidoc/web/webflux-webclient.adoc

@ -102,7 +102,7 @@ To change the limit for default codecs, use the following: @@ -102,7 +102,7 @@ To change the limit for default codecs, use the following:
.Java
----
WebClient webClient = WebClient.builder()
.codecs(configurer -> configurer.defaultCodecs().maxInMemorySize(2 * 1024 * 1024));
.codecs(configurer -> configurer.defaultCodecs().maxInMemorySize(2 * 1024 * 1024))
.build();
----
[source,kotlin,indent=0,subs="verbatim,quotes",role="secondary"]

Loading…
Cancel
Save