From cba192aa6f590d49abc08a3295ed24ad5f85989d Mon Sep 17 00:00:00 2001 From: xxxxxxjun Date: Sat, 4 Apr 2026 23:20:37 +0900 Subject: [PATCH] Fix typo in OAuth2 migration guide code example The Java code example for BearerTokenAuthenticationFilter migration misspelled the variable name as "authenicationConverter" instead of "authenticationConverter", which would cause a compilation error if copied directly. The Kotlin example was already correct. Signed-off-by: xxxxxxjun --- docs/modules/ROOT/pages/migration/servlet/oauth2.adoc | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/modules/ROOT/pages/migration/servlet/oauth2.adoc b/docs/modules/ROOT/pages/migration/servlet/oauth2.adoc index 7594dda0a4f..10ecc6683f3 100644 --- a/docs/modules/ROOT/pages/migration/servlet/oauth2.adoc +++ b/docs/modules/ROOT/pages/migration/servlet/oauth2.adoc @@ -120,7 +120,7 @@ BearerTokenAuthenticationConverter authenticationConverter = new BearerTokenAuthenticationConverter(); authenticationConverter.setBearerTokenResolver(myBearerTokenResolver); authenticationConverter.setAuthenticationDetailsSource(myAuthenticationDetailsSource); -BearerTokenAuthenticationFilter filter = new BearerTokenAuthenticationFilter(authenticationManager, authenicationConverter); +BearerTokenAuthenticationFilter filter = new BearerTokenAuthenticationFilter(authenticationManager, authenticationConverter); ---- Kotlin::