diff --git a/Octokit/Helpers/ApiUrls.cs b/Octokit/Helpers/ApiUrls.cs index 54d6edaa..9abff514 100644 --- a/Octokit/Helpers/ApiUrls.cs +++ b/Octokit/Helpers/ApiUrls.cs @@ -17,7 +17,7 @@ namespace Octokit static readonly Uri _currentUserAllIssues = new Uri("issues", UriKind.Relative); static readonly Uri _currentUserOwnedAndMemberIssues = new Uri("user/issues", UriKind.Relative); static readonly Uri _oauthAuthorize = new Uri("login/oauth/authorize", UriKind.Relative); - static readonly Uri _oauthAccesToken = new Uri("login/oauth/access_token", UriKind.Relative); + static readonly Uri _oauthAccessToken = new Uri("login/oauth/access_token", UriKind.Relative); /// /// Returns the that returns all public repositories in @@ -1135,7 +1135,7 @@ namespace Octokit } /// - /// Returns the for a specifc blob. + /// Returns the for a specific blob. /// /// The owner of the blob /// The name of the organization @@ -1146,7 +1146,7 @@ namespace Octokit } /// - /// Returns the for a specifc blob. + /// Returns the for a specific blob. /// /// The owner of the blob /// The name of the organization @@ -1560,7 +1560,7 @@ namespace Octokit /// public static Uri OauthAccessToken() { - return _oauthAccesToken; + return _oauthAccessToken; } ///