diff --git a/src/Microsoft.IdentityModel.JsonWebTokens/JsonWebTokenHandler.cs b/src/Microsoft.IdentityModel.JsonWebTokens/JsonWebTokenHandler.cs
index 311c30bed9..39ff48fce7 100644
--- a/src/Microsoft.IdentityModel.JsonWebTokens/JsonWebTokenHandler.cs
+++ b/src/Microsoft.IdentityModel.JsonWebTokens/JsonWebTokenHandler.cs
@@ -1085,9 +1085,9 @@ protected virtual SecurityKey ResolveTokenDecryptionKey(string token, JsonWebTok
/// is null or empty.
/// 'token.Length' is greater than .
/// If the is in JWE Compact Serialization format, only the protected header will be deserialized.
- /// This method is unable to decrypt the payload. Use to obtain the payload.
- /// The token is NOT validated and no security decisions should be made about the contents.
- /// Use or to ensure the token is acceptable.
+ /// This method is unable to decrypt the payload. Use to obtain the payload.
+ /// The token is NOT validated and no security decisions should be made about the contents.
+ /// Use or to ensure the token is acceptable.
public virtual JsonWebToken ReadJsonWebToken(string token)
{
if (string.IsNullOrEmpty(token))
diff --git a/src/System.IdentityModel.Tokens.Jwt/JwtSecurityTokenHandler.cs b/src/System.IdentityModel.Tokens.Jwt/JwtSecurityTokenHandler.cs
index b0fe44bccf..99ebc3bf05 100644
--- a/src/System.IdentityModel.Tokens.Jwt/JwtSecurityTokenHandler.cs
+++ b/src/System.IdentityModel.Tokens.Jwt/JwtSecurityTokenHandler.cs
@@ -755,10 +755,10 @@ private IDictionary OutboundClaimTypeTransform(IDictionary is null or empty.
/// 'token.Length' is greater than .
///
- /// If the is in JWE Compact Serialization format, only the protected header will be deserialized.
- /// This method is unable to decrypt the payload. Use to obtain the payload.
- /// The token is NOT validated and no security decisions should be made about the contents.
- /// Use to ensure the token is acceptable.
+ /// If the is in JWE Compact Serialization format, only the protected header will be deserialized.
+ /// This method is unable to decrypt the payload. Use to obtain the payload.
+ /// The token is NOT validated and no security decisions should be made about the contents.
+ /// Use to ensure the token is acceptable.
public JwtSecurityToken ReadJwtToken(string token)
{
if (string.IsNullOrEmpty(token))