Typo in example code in spring reactive reference document

Issue: SPR-16300
This commit is contained in:
Arjen Poutsma 2017-12-15 12:03:14 +01:00
parent f4d8c7cc2b
commit b8201f48fd
1 changed files with 1 additions and 1 deletions

View File

@ -229,7 +229,7 @@ SecurityManager securityManager = ...
RouterFunction<ServerResponse> route = ...
RouterFunction<ServerResponse> filteredRoute =
route.filter(request, next) -> {
route.filter((request, next) -> {
if (securityManager.allowAccessTo(request.path())) {
return next.handle(request);
}