diff --git a/src/Microsoft.AspNetCore.Authentication.JwtBearer/Events/MessageReceivedContext.cs b/src/Microsoft.AspNetCore.Authentication.JwtBearer/Events/MessageReceivedContext.cs
index 3c263f6b24..1850ad0492 100644
--- a/src/Microsoft.AspNetCore.Authentication.JwtBearer/Events/MessageReceivedContext.cs
+++ b/src/Microsoft.AspNetCore.Authentication.JwtBearer/Events/MessageReceivedContext.cs
@@ -14,7 +14,7 @@ namespace Microsoft.AspNetCore.Authentication.JwtBearer
: base(context, scheme, options) { }
///
- /// Bearer Token. This will give application an opportunity to retrieve token from an alternation location.
+ /// Bearer Token. This will give the application an opportunity to retrieve a token from an alternative location.
///
public string Token { get; set; }
}
diff --git a/src/Microsoft.AspNetCore.Authentication.OpenIdConnect/Events/MessageReceivedContext.cs b/src/Microsoft.AspNetCore.Authentication.OpenIdConnect/Events/MessageReceivedContext.cs
index 106ecb8c03..7d06e44799 100644
--- a/src/Microsoft.AspNetCore.Authentication.OpenIdConnect/Events/MessageReceivedContext.cs
+++ b/src/Microsoft.AspNetCore.Authentication.OpenIdConnect/Events/MessageReceivedContext.cs
@@ -18,7 +18,7 @@ namespace Microsoft.AspNetCore.Authentication.OpenIdConnect
public OpenIdConnectMessage ProtocolMessage { get; set; }
///
- /// Bearer Token. This will give application an opportunity to retrieve token from an alternation location.
+ /// Bearer Token. This will give the application an opportunity to retrieve a token from an alternative location.
///
public string Token { get; set; }
}