From 2042d693a5ca34bddb178361225dfed8aced1128 Mon Sep 17 00:00:00 2001 From: Viktor Benei Date: Mon, 5 Jul 2021 19:29:36 +0200 Subject: [PATCH] Doc comment fix - fixing #193 Fixing #193 --- lib/src/common/util/oauth2.dart | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/src/common/util/oauth2.dart b/lib/src/common/util/oauth2.dart index b69559cf..5d3c9e59 100644 --- a/lib/src/common/util/oauth2.dart +++ b/lib/src/common/util/oauth2.dart @@ -8,7 +8,7 @@ import 'package:http/http.dart' as http; /// **Example**: /// /// var flow = new OAuth2Flow('ClientID', 'ClientSecret'); -/// var authUrl = flow.createAuthorizationURL(); +/// var authUrl = flow.createAuthorizeUrl(); /// // Display to the User and handle the redirect URI, and also get the code. /// flow.exchange(code).then((response) { /// var github = new GitHub(auth: new Authentication.withToken(response.token));