Update ImplicitGrantAuth.cs

fixed spelling mistake
This commit is contained in:
Jonas Dellinger 2015-10-05 16:22:08 +02:00
parent be0e9684f8
commit f09c52a60c

View File

@ -9,7 +9,7 @@ namespace SpotifyAPI.Web.Auth
{
public class ImplicitGrantAuth
{
public delegate void OnResponseReceived(Token token, String error);
public delegate void OnResponseReceived(Token token, String state);
private SimpleHttpServer _httpServer;
private Thread _httpThread;
@ -74,4 +74,4 @@ namespace SpotifyAPI.Web.Auth
_httpServer = null;
}
}
}
}