diff --git a/docs/modules/ROOT/pages/migration/reactive.adoc b/docs/modules/ROOT/pages/migration/reactive.adoc index 1ce1dbe023..e9f964578b 100644 --- a/docs/modules/ROOT/pages/migration/reactive.adoc +++ b/docs/modules/ROOT/pages/migration/reactive.adoc @@ -170,8 +170,8 @@ WebFilter csrfCookieWebFilter() { open fun securityWebFilterChain(http: ServerHttpSecurity): SecurityWebFilterChain { val tokenRepository = CookieServerCsrfTokenRepository.withHttpOnlyFalse() val delegate = XorServerCsrfTokenRequestAttributeHandler() - // Use only the handle() method of XorCsrfTokenRequestAttributeHandler and the - // default implementation of resolveCsrfTokenValue() from CsrfTokenRequestHandler + // Use only the handle() method of XorServerCsrfTokenRequestAttributeHandler and the + // default implementation of resolveCsrfTokenValue() from ServerCsrfTokenRequestHandler val requestHandler = ServerCsrfTokenRequestHandler(delegate::handle) return http.invoke { // ...