diff --git a/Octokit/Helpers/ApiUrls.cs b/Octokit/Helpers/ApiUrls.cs index bb34ce4624..54d6edaa27 100644 --- a/Octokit/Helpers/ApiUrls.cs +++ b/Octokit/Helpers/ApiUrls.cs @@ -3,7 +3,7 @@ namespace Octokit { /// - /// Class for retrieving GitHub ApI URLs + /// Class for retrieving GitHub API URLs /// public static partial class ApiUrls { @@ -499,7 +499,7 @@ public static Uri OrganizationMembership(string org, string name) /// /// The owner of the repository /// The name of the repository - /// /// The issue number + /// The issue number /// public static Uri IssuesEvents(string owner, string name, int number) { @@ -906,7 +906,7 @@ public static Uri GistCommits(string id) /// /// The owner of the repository /// The name of the repository - /// /// The pull request number + /// The pull request number /// public static Uri PullRequest(string owner, string name, int number) { @@ -929,7 +929,7 @@ public static Uri PullRequests(string owner, string name) /// /// The owner of the repository /// The name of the repository - /// /// The pull request number + /// The pull request number public static Uri MergePullRequest(string owner, string name, int number) { return "repos/{0}/{1}/pulls/{2}/merge".FormatUri(owner, name, number); @@ -940,7 +940,7 @@ public static Uri MergePullRequest(string owner, string name, int number) /// /// The owner of the repository /// The name of the repository - /// /// The pull request number + /// The pull request number public static Uri PullRequestCommits(string owner, string name, int number) { return "repos/{0}/{1}/pulls/{2}/commits".FormatUri(owner, name, number); @@ -1507,7 +1507,7 @@ public static Uri Followers(string login) /// /// Creates the relative for retrieving the users the current user follows /// - /// The for retrieiving the users the current user follows + /// The for retrieving the users the current user follows public static Uri Following() { return "user/following".FormatUri(); diff --git a/Octokit/Http/ApiConnection.cs b/Octokit/Http/ApiConnection.cs index c1d2710ab6..0cf57496e0 100644 --- a/Octokit/Http/ApiConnection.cs +++ b/Octokit/Http/ApiConnection.cs @@ -395,7 +395,7 @@ public Task Patch(Uri uri) /// /// The API resource's type. /// URI of the API resource to update - /// /// Object that describes the API resource; this will be serialized and used as the request's body + /// Object that describes the API resource; this will be serialized and used as the request's body /// The updated API resource. /// Thrown when an API error occurs. public async Task Patch(Uri uri, object data)