From c3d2cdd2f2ab15c353a08f403fc1a55de06a71f6 Mon Sep 17 00:00:00 2001 From: Dean Herbert Date: Thu, 11 May 2017 19:49:28 +0900 Subject: [PATCH] Fix typo --- osu.Game/Online/API/OAuth.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/osu.Game/Online/API/OAuth.cs b/osu.Game/Online/API/OAuth.cs index 2f841b67b1..c96b21a855 100644 --- a/osu.Game/Online/API/OAuth.cs +++ b/osu.Game/Online/API/OAuth.cs @@ -85,7 +85,7 @@ namespace osu.Game.Online.API // we want to ensure only a single authentication update is happening at once. lock (access_token_retrieval_lock) { - // re-check if valid, in case another requrest completed and revalidated our access. + // re-check if valid, in case another request completed and revalidated our access. if (accessTokenValid) return true; // if not, let's try using our refresh token to request a new access token.