Remove rogue semicolon

This commit is contained in:
Aakarshit Uppal 2020-10-29 15:35:10 +05:30 committed by Rossen Stoyanchev
parent a00c483927
commit 44239b2d7b
1 changed files with 1 additions and 1 deletions

View File

@ -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"]