From edabde8a11fbf8987787b3d4a8ab2408a889e79c Mon Sep 17 00:00:00 2001 From: waahhh Date: Sun, 9 Jan 2022 19:10:45 +0900 Subject: [PATCH] Fix syntax in WebFlux Validation example Closes gh-27907 --- src/docs/asciidoc/web/webflux.adoc | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/docs/asciidoc/web/webflux.adoc b/src/docs/asciidoc/web/webflux.adoc index 1cc3021021..e3670f186c 100644 --- a/src/docs/asciidoc/web/webflux.adoc +++ b/src/docs/asciidoc/web/webflux.adoc @@ -3845,7 +3845,7 @@ as the following example shows: public class WebConfig implements WebFluxConfigurer { @Override - public Validator getValidator(); { + public Validator getValidator() { // ... }