From af21727815263fb5ffc07ede953cf042fac3ac2b Mon Sep 17 00:00:00 2001 From: Elliotte Rusty Harold Date: Tue, 12 Jan 2021 20:32:37 +0000 Subject: [PATCH] docs: fix wording in jwtWithClaims Javadoc (#536) * update Javadoc * format --- oauth2_http/java/com/google/auth/oauth2/JwtProvider.java | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/oauth2_http/java/com/google/auth/oauth2/JwtProvider.java b/oauth2_http/java/com/google/auth/oauth2/JwtProvider.java index eadee9600..7a2352ac5 100644 --- a/oauth2_http/java/com/google/auth/oauth2/JwtProvider.java +++ b/oauth2_http/java/com/google/auth/oauth2/JwtProvider.java @@ -40,8 +40,7 @@ public interface JwtProvider { /** * Returns a new JwtCredentials instance with modified claims. * - * @param newClaims new claims. Any unspecified claim fields will default to the the current - * values. + * @param newClaims new claims. Any unspecified claim fields default to the current values. * @return new credentials */ JwtCredentials jwtWithClaims(JwtClaims newClaims);