From 659b25a4e59157aaac6a7784d57f0760803bfc29 Mon Sep 17 00:00:00 2001 From: Joe Grandja Date: Mon, 22 Jun 2020 08:21:46 -0400 Subject: [PATCH] Fix typo in OAuth2AccessTokenResponse Closes gh-8746 --- .../oauth2/core/endpoint/OAuth2AccessTokenResponse.java | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/oauth2/oauth2-core/src/main/java/org/springframework/security/oauth2/core/endpoint/OAuth2AccessTokenResponse.java b/oauth2/oauth2-core/src/main/java/org/springframework/security/oauth2/core/endpoint/OAuth2AccessTokenResponse.java index 55488926cb..eeaba2d28c 100644 --- a/oauth2/oauth2-core/src/main/java/org/springframework/security/oauth2/core/endpoint/OAuth2AccessTokenResponse.java +++ b/oauth2/oauth2-core/src/main/java/org/springframework/security/oauth2/core/endpoint/OAuth2AccessTokenResponse.java @@ -82,8 +82,9 @@ public final class OAuth2AccessTokenResponse { } /** - * Returns a new {@link Builder}, initialized with the provided response - * @param response the response to intialize the builder with + * Returns a new {@link Builder}, initialized with the provided response. + * + * @param response the response to initialize the builder with * @return the {@link Builder} */ public static Builder withResponse(OAuth2AccessTokenResponse response) {