Typo in example code in spring reactive reference document
Issue: SPR-16300
This commit is contained in:
parent
f4d8c7cc2b
commit
b8201f48fd
|
|
@ -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);
|
||||
}
|
||||
|
|
|
|||
Loading…
Reference in New Issue