From 727429278ee8ad802fd59533884a39d57a827db7 Mon Sep 17 00:00:00 2001 From: Kristian Hellang Date: Mon, 25 Nov 2013 12:45:34 +0100 Subject: [PATCH] Fixed some R# documentation analysis errors --- Octokit.Reactive/Clients/IObservableOrganizationTeamsClient.cs | 2 +- Octokit.Reactive/Clients/ObservableOrganizationTeamsClient.cs | 2 +- Octokit/Clients/IRepoCollaboratorsClient.cs | 2 +- Octokit/Clients/ITeamsClient.cs | 2 +- Octokit/Clients/RepoCollaboratorsClient.cs | 2 +- Octokit/Http/IHttpClient.cs | 2 +- 6 files changed, 6 insertions(+), 6 deletions(-) diff --git a/Octokit.Reactive/Clients/IObservableOrganizationTeamsClient.cs b/Octokit.Reactive/Clients/IObservableOrganizationTeamsClient.cs index a7911838..9c9dfc33 100644 --- a/Octokit.Reactive/Clients/IObservableOrganizationTeamsClient.cs +++ b/Octokit.Reactive/Clients/IObservableOrganizationTeamsClient.cs @@ -16,7 +16,7 @@ namespace Octokit.Reactive /// Returns all s for the current org. /// /// Thrown when a general API error occurs. - /// A list of the orgs's teams s. + /// A list of the orgs's teams s. IObservable GetAllTeams(string org); /// diff --git a/Octokit.Reactive/Clients/ObservableOrganizationTeamsClient.cs b/Octokit.Reactive/Clients/ObservableOrganizationTeamsClient.cs index 609375cc..1888a2a4 100644 --- a/Octokit.Reactive/Clients/ObservableOrganizationTeamsClient.cs +++ b/Octokit.Reactive/Clients/ObservableOrganizationTeamsClient.cs @@ -25,7 +25,7 @@ namespace Octokit.Reactive /// Returns all s for the current org. /// /// Thrown when a general API error occurs. - /// A list of the orgs's teams s. + /// A list of the orgs's teams s. public IObservable GetAllTeams(string org) { Ensure.ArgumentNotNullOrEmptyString(org, "org"); diff --git a/Octokit/Clients/IRepoCollaboratorsClient.cs b/Octokit/Clients/IRepoCollaboratorsClient.cs index f94b0fe1..3c379ba0 100644 --- a/Octokit/Clients/IRepoCollaboratorsClient.cs +++ b/Octokit/Clients/IRepoCollaboratorsClient.cs @@ -31,7 +31,7 @@ namespace Octokit /// See the API documentation for more information. /// /// Thrown when a general API error occurs. - /// True if user is a collaborator else false + /// True if user is a collaborator else false Task IsCollaborator(string owner, string repo, string user); /// diff --git a/Octokit/Clients/ITeamsClient.cs b/Octokit/Clients/ITeamsClient.cs index 06554128..31c02b70 100644 --- a/Octokit/Clients/ITeamsClient.cs +++ b/Octokit/Clients/ITeamsClient.cs @@ -18,7 +18,7 @@ namespace Octokit /// Returns all s for the current org. /// /// Thrown when a general API error occurs. - /// A list of the orgs's teams s. + /// A list of the orgs's teams s. Task> GetAllTeams(string org); /// diff --git a/Octokit/Clients/RepoCollaboratorsClient.cs b/Octokit/Clients/RepoCollaboratorsClient.cs index 6fc52ca4..6b508b98 100644 --- a/Octokit/Clients/RepoCollaboratorsClient.cs +++ b/Octokit/Clients/RepoCollaboratorsClient.cs @@ -48,7 +48,7 @@ namespace Octokit /// See the API documentation for more information. /// /// Thrown when a general API error occurs. - /// True if user is a collaborator else false + /// True if user is a collaborator else false public async Task IsCollaborator(string owner, string repo, string user) { Ensure.ArgumentNotNullOrEmptyString(owner, "owner"); diff --git a/Octokit/Http/IHttpClient.cs b/Octokit/Http/IHttpClient.cs index 75c87a0c..4e699d31 100644 --- a/Octokit/Http/IHttpClient.cs +++ b/Octokit/Http/IHttpClient.cs @@ -15,7 +15,7 @@ namespace Octokit.Internal /// /// The type of data to send /// A that represents the HTTP request - /// A + /// A of Task> Send(IRequest request); } }