From b60eadb10b7716cded1f6f4ee962d9884f3a907e Mon Sep 17 00:00:00 2001 From: Arnaud Heritier Date: Fri, 25 May 2018 16:59:13 +0100 Subject: [PATCH] Add missing semicolon in example Closes gh-13266 --- .../src/main/asciidoc/production-ready-features.adoc | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/spring-boot-project/spring-boot-docs/src/main/asciidoc/production-ready-features.adoc b/spring-boot-project/spring-boot-docs/src/main/asciidoc/production-ready-features.adoc index 88a9509ad4..a6fb11b703 100644 --- a/spring-boot-project/spring-boot-docs/src/main/asciidoc/production-ready-features.adoc +++ b/spring-boot-project/spring-boot-docs/src/main/asciidoc/production-ready-features.adoc @@ -419,7 +419,7 @@ following example: @Override protected void configure(HttpSecurity http) throws Exception { http.requestMatcher(EndpointRequest.toAnyEndpoint()).authorizeRequests() - .anyRequest().permitAll() + .anyRequest().permitAll(); } }