Skip to content

Commit feee8b5

Browse files
committed
Merge pull request #13266 from aheritier:patch-2
* pr/13266: Add missing semicolon in example
2 parents 6f0ccc6 + b60eadb commit feee8b5

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

spring-boot-project/spring-boot-docs/src/main/asciidoc/production-ready-features.adoc

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -419,7 +419,7 @@ following example:
419419
@Override
420420
protected void configure(HttpSecurity http) throws Exception {
421421
http.requestMatcher(EndpointRequest.toAnyEndpoint()).authorizeRequests()
422-
.anyRequest().permitAll()
422+
.anyRequest().permitAll();
423423
}
424424
425425
}

0 commit comments

Comments
 (0)