From 9fe8154e0881be3f0f8e8a004d0d4c7275beb590 Mon Sep 17 00:00:00 2001 From: rodkings Date: Wed, 22 Apr 2015 13:41:45 -0600 Subject: [PATCH] fixed reference --- src/Untappd.Net/Authentication/AuthenticationHelper.cs | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/Untappd.Net/Authentication/AuthenticationHelper.cs b/src/Untappd.Net/Authentication/AuthenticationHelper.cs index f7b59f3..a3dad16 100644 --- a/src/Untappd.Net/Authentication/AuthenticationHelper.cs +++ b/src/Untappd.Net/Authentication/AuthenticationHelper.cs @@ -16,7 +16,7 @@ namespace Untappd.Net.Authentication /// /// The URL to redirect back to your application. Should listen on code as a string param /// - public static string RedirectUserTo(IUnAuthenticadedUntappdCredentials credentials, string redirectUrl) + public static string RedirectUserTo(IUnAuthenticatedUntappdCredentials credentials, string redirectUrl) { if (credentials == null) { @@ -39,7 +39,7 @@ namespace Untappd.Net.Authentication /// /// Data returned by the initial request(see: RedirectUserTo) /// - public static string TokenUrl(IUnAuthenticadedUntappdCredentials credentials, string redirectUrl, string code) + public static string TokenUrl(IUnAuthenticatedUntappdCredentials credentials, string redirectUrl, string code) { if (credentials == null) {