From 44239b2d7b6026012da176339153df29aa13f305 Mon Sep 17 00:00:00 2001 From: Aakarshit Uppal <26065812+aksh1618@users.noreply.github.com> Date: Thu, 29 Oct 2020 15:35:10 +0530 Subject: [PATCH] Remove rogue semicolon --- src/docs/asciidoc/web/webflux-webclient.adoc | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/docs/asciidoc/web/webflux-webclient.adoc b/src/docs/asciidoc/web/webflux-webclient.adoc index 240223d63e5..2ce33a0f5c2 100644 --- a/src/docs/asciidoc/web/webflux-webclient.adoc +++ b/src/docs/asciidoc/web/webflux-webclient.adoc @@ -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"]