From a865824da402a55b66f4fdb1023574b059990467 Mon Sep 17 00:00:00 2001 From: Dmitry Budaev Date: Mon, 18 Feb 2019 15:23:59 +0100 Subject: [PATCH] Update comment style --- Bynder/Api/IBynderAPI.cs | 14 +++++++------- 1 file changed, 7 insertions(+), 7 deletions(-) diff --git a/Bynder/Api/IBynderAPI.cs b/Bynder/Api/IBynderAPI.cs index 1acf9d5..ab8240e 100644 --- a/Bynder/Api/IBynderAPI.cs +++ b/Bynder/Api/IBynderAPI.cs @@ -22,13 +22,13 @@ public interface IBynderApi : IDisposable Task LoginAsync(string email, string password); /* - * To Login using the browser so only consumer key/secret are needed. Client has to do the following: - * 1. Request temporary Tokens -> GetRequestTokenAsync - * 2. Get Authorized Url to open the browser -> GetAuthorizeUrl - * 3. Wait until user enters credentials and browser is redirected to callback Url. - * 4. Request final access tokens -> GetAccessTokenAsync - * - * Example can be found in Bynder.Sample project + To Login using the browser so only consumer key/secret are needed. Client has to do the following: + 1. Request temporary Tokens -> GetRequestTokenAsync + 2. Get Authorized Url to open the browser -> GetAuthorizeUrl + 3. Wait until user enters credentials and browser is redirected to callback Url. + 4. Request final access tokens -> GetAccessTokenAsync + + Example can be found in Bynder.Sample project */ ///