diff --git a/src/Auth0.OidcClient.Core/Tokens/IdTokenValidator.cs b/src/Auth0.OidcClient.Core/Tokens/IdTokenValidator.cs
index b7bdb8a1..6710ab5d 100644
--- a/src/Auth0.OidcClient.Core/Tokens/IdTokenValidator.cs
+++ b/src/Auth0.OidcClient.Core/Tokens/IdTokenValidator.cs
@@ -62,7 +62,7 @@ private static JwtSecurityToken DecodeToken(string rawIDToken)
/// that should be asserted.
/// to assert requirements against.
/// to act as "Now" when asserting time-based claims.
- /// Exception thrown if fails to
+ /// Exception thrown if fails to
/// meet the requirements specified by .
///
private static void AssertTokenClaimsMeetRequirements(IdTokenRequirements required, JwtSecurityToken token, DateTime pointInTime)
@@ -139,7 +139,7 @@ private static void AssertTokenClaimsMeetRequirements(IdTokenRequirements requir
///
/// Claims to search the for.
/// Type of claim to search the for. See for possible names.
- /// A Containing the value containing the epoch value or if no matching value was found.
+ /// A containing the epoch value or if no matching value was found.
private static long? GetEpoch(IEnumerable claims, string claimType)
{
var claim = claims.FirstOrDefault(t => t.Type == claimType);