From 706566e2531245fdc2a2b8115373b66d5bf16799 Mon Sep 17 00:00:00 2001 From: Christian Weiss Date: Thu, 4 Aug 2016 18:02:09 +0200 Subject: [PATCH] Typo "Failed to retrived" -> "Failed to retrieve" --- .../FacebookHandler.cs | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/Microsoft.AspNetCore.Authentication.Facebook/FacebookHandler.cs b/src/Microsoft.AspNetCore.Authentication.Facebook/FacebookHandler.cs index 29906e7e3f..be1c8f8f83 100644 --- a/src/Microsoft.AspNetCore.Authentication.Facebook/FacebookHandler.cs +++ b/src/Microsoft.AspNetCore.Authentication.Facebook/FacebookHandler.cs @@ -38,7 +38,7 @@ namespace Microsoft.AspNetCore.Authentication.Facebook var response = await Backchannel.GetAsync(endpoint, Context.RequestAborted); if (!response.IsSuccessStatusCode) { - throw new HttpRequestException($"Failed to retrived Facebook user information ({response.StatusCode}) Please check if the authentication information is correct and the corresponding Facebook Graph API is enabled."); + throw new HttpRequestException($"Failed to retrieve Facebook user information ({response.StatusCode}) Please check if the authentication information is correct and the corresponding Facebook Graph API is enabled."); } var payload = JObject.Parse(await response.Content.ReadAsStringAsync()); @@ -157,4 +157,4 @@ namespace Microsoft.AspNetCore.Authentication.Facebook return string.Join(",", Options.Scope); } } -} \ No newline at end of file +}