diff --git a/Octokit.Reactive/Clients/IObservableRepoCollaboratorsClient.cs b/Octokit.Reactive/Clients/IObservableRepoCollaboratorsClient.cs
index bb49811a..47607da6 100644
--- a/Octokit.Reactive/Clients/IObservableRepoCollaboratorsClient.cs
+++ b/Octokit.Reactive/Clients/IObservableRepoCollaboratorsClient.cs
@@ -20,7 +20,7 @@ namespace Octokit.Reactive
/// The owner of the repository
/// The name of the repository
/// Thrown when a general API error occurs.
- /// A of s for the specified repository.
+ ///
IObservable GetAll(string owner, string name);
///
@@ -31,7 +31,7 @@ namespace Octokit.Reactive
///
/// The id of the repository
/// Thrown when a general API error occurs.
- /// A of s for the specified repository.
+ ///
IObservable GetAll(int repositoryId);
///
@@ -44,7 +44,7 @@ namespace Octokit.Reactive
/// The name of the repository
/// Options for changing the API response
/// Thrown when a general API error occurs.
- /// A of s for the specified repository.
+ ///
IObservable GetAll(string owner, string name, ApiOptions options);
///
@@ -56,7 +56,7 @@ namespace Octokit.Reactive
/// The id of the repository
/// Options for changing the API response
/// Thrown when a general API error occurs.
- /// A of s for the specified repository.
+ ///
IObservable GetAll(int repositoryId, ApiOptions options);
///
@@ -69,7 +69,7 @@ namespace Octokit.Reactive
/// The name of the repository
/// Username of the prospective collaborator
/// Thrown when a general API error occurs.
- /// True if user is a collaborator else false
+ ///
IObservable IsCollaborator(string owner, string name, string user);
///
@@ -81,7 +81,7 @@ namespace Octokit.Reactive
/// The id of the repository
/// Username of the prospective collaborator
/// Thrown when a general API error occurs.
- /// True if user is a collaborator else false
+ ///
IObservable IsCollaborator(int repositoryId, string user);
///
@@ -94,7 +94,7 @@ namespace Octokit.Reactive
/// The name of the repository
/// Username of the new collaborator
/// Thrown when a general API error occurs.
- ///
+ ///
IObservable Add(string owner, string name, string user);
///
@@ -106,7 +106,7 @@ namespace Octokit.Reactive
/// The id of the repository
/// Username of the new collaborator
/// Thrown when a general API error occurs.
- ///
+ ///
IObservable Add(int repositoryId, string user);
///
@@ -119,7 +119,7 @@ namespace Octokit.Reactive
/// The name of the repository
/// Username of the removed collaborator
/// Thrown when a general API error occurs.
- ///
+ ///
IObservable Delete(string owner, string name, string user);
///
@@ -131,7 +131,7 @@ namespace Octokit.Reactive
/// The id of the repository
/// Username of the removed collaborator
/// Thrown when a general API error occurs.
- ///
+ ///
IObservable Delete(int repositoryId, string user);
}
}
diff --git a/Octokit.Reactive/Clients/ObservableRepoCollaboratorsClient.cs b/Octokit.Reactive/Clients/ObservableRepoCollaboratorsClient.cs
index 5177dda4..11640a58 100644
--- a/Octokit.Reactive/Clients/ObservableRepoCollaboratorsClient.cs
+++ b/Octokit.Reactive/Clients/ObservableRepoCollaboratorsClient.cs
@@ -37,7 +37,7 @@ namespace Octokit.Reactive
/// The owner of the repository
/// The name of the repository
/// Thrown when a general API error occurs.
- /// A of s for the specified repository.
+ ///
public IObservable GetAll(string owner, string name)
{
Ensure.ArgumentNotNullOrEmptyString(owner, "owner");
@@ -54,7 +54,7 @@ namespace Octokit.Reactive
///
/// The id of the repository
/// Thrown when a general API error occurs.
- /// A of s for the specified repository.
+ ///
public IObservable GetAll(int repositoryId)
{
return GetAll(repositoryId, ApiOptions.None);
@@ -70,7 +70,7 @@ namespace Octokit.Reactive
/// The name of the repository
/// Options for changing the API response
/// Thrown when a general API error occurs.
- /// A of s for the specified repository.
+ ///
public IObservable GetAll(string owner, string name, ApiOptions options)
{
Ensure.ArgumentNotNullOrEmptyString(owner, "owner");
@@ -89,7 +89,7 @@ namespace Octokit.Reactive
/// The id of the repository
/// Options for changing the API response
/// Thrown when a general API error occurs.
- /// A of s for the specified repository.
+ ///
public IObservable GetAll(int repositoryId, ApiOptions options)
{
Ensure.ArgumentNotNull(options, "options");
@@ -107,7 +107,7 @@ namespace Octokit.Reactive
/// The name of the repository
/// Username of the prospective collaborator
/// Thrown when a general API error occurs.
- /// True if user is a collaborator else false
+ ///
public IObservable IsCollaborator(string owner, string name, string user)
{
Ensure.ArgumentNotNullOrEmptyString(owner, "owner");
@@ -126,7 +126,7 @@ namespace Octokit.Reactive
/// The id of the repository
/// Username of the prospective collaborator
/// Thrown when a general API error occurs.
- /// True if user is a collaborator else false
+ ///
public IObservable IsCollaborator(int repositoryId, string user)
{
Ensure.ArgumentNotNullOrEmptyString(user, "user");
@@ -144,7 +144,7 @@ namespace Octokit.Reactive
/// The name of the repository
/// Username of the new collaborator
/// Thrown when a general API error occurs.
- ///
+ ///
public IObservable Add(string owner, string name, string user)
{
Ensure.ArgumentNotNullOrEmptyString(owner, "owner");
@@ -163,7 +163,7 @@ namespace Octokit.Reactive
/// The id of the repository
/// Username of the new collaborator
/// Thrown when a general API error occurs.
- ///
+ ///
public IObservable Add(int repositoryId, string user)
{
Ensure.ArgumentNotNullOrEmptyString(user, "user");
@@ -181,7 +181,7 @@ namespace Octokit.Reactive
/// The name of the repository
/// Username of the deleted collaborator
/// Thrown when a general API error occurs.
- ///
+ ///
public IObservable Delete(string owner, string name, string user)
{
Ensure.ArgumentNotNullOrEmptyString(owner, "owner");
@@ -200,7 +200,7 @@ namespace Octokit.Reactive
/// The id of the repository
/// Username of the deleted collaborator
/// Thrown when a general API error occurs.
- ///
+ ///
public IObservable Delete(int repositoryId, string user)
{
Ensure.ArgumentNotNullOrEmptyString(user, "user");
diff --git a/Octokit/Clients/IRepoCollaboratorsClient.cs b/Octokit/Clients/IRepoCollaboratorsClient.cs
index c8183e1c..9569814b 100644
--- a/Octokit/Clients/IRepoCollaboratorsClient.cs
+++ b/Octokit/Clients/IRepoCollaboratorsClient.cs
@@ -22,7 +22,7 @@ namespace Octokit
/// The owner of the repository
/// The name of the repository
/// Thrown when a general API error occurs.
- /// A of s for the specified repository.
+ ///
Task> GetAll(string owner, string name);
///
@@ -33,7 +33,7 @@ namespace Octokit
///
/// The id of the repository
/// Thrown when a general API error occurs.
- /// A of s for the specified repository.
+ ///
Task> GetAll(int repositoryId);
///
@@ -46,7 +46,7 @@ namespace Octokit
/// The name of the repository
/// Options for changing the API response
/// Thrown when a general API error occurs.
- /// A of s for the specified repository.
+ ///
Task> GetAll(string owner, string name, ApiOptions options);
///
@@ -58,7 +58,7 @@ namespace Octokit
/// The id of the repository
/// Options for changing the API response
/// Thrown when a general API error occurs.
- /// A of s for the specified repository.
+ ///
Task> GetAll(int repositoryId, ApiOptions options);
///
@@ -71,7 +71,7 @@ namespace Octokit
/// The name of the repository
/// Username of the prospective collaborator
/// Thrown when a general API error occurs.
- /// True if user is a collaborator else false
+ ///
Task IsCollaborator(string owner, string name, string user);
///
@@ -83,7 +83,7 @@ namespace Octokit
/// The id of the repository
/// Username of the prospective collaborator
/// Thrown when a general API error occurs.
- /// True if user is a collaborator else false
+ ///
Task IsCollaborator(int repositoryId, string user);
///
@@ -96,7 +96,7 @@ namespace Octokit
/// The name of the repository
/// Username of the new collaborator
/// Thrown when a general API error occurs.
- ///
+ ///
Task Add(string owner, string name, string user);
///
@@ -108,7 +108,7 @@ namespace Octokit
/// The id of the repository
/// Username of the new collaborator
/// Thrown when a general API error occurs.
- ///
+ ///
Task Add(int repositoryId, string user);
///
@@ -121,7 +121,7 @@ namespace Octokit
/// The name of the repository
/// Username of the removed collaborator
/// Thrown when a general API error occurs.
- ///
+ ///
Task Delete(string owner, string name, string user);
///
@@ -133,7 +133,7 @@ namespace Octokit
/// The id of the repository
/// Username of the removed collaborator
/// Thrown when a general API error occurs.
- ///
+ ///
Task Delete(int repositoryId, string user);
}
}
diff --git a/Octokit/Clients/RepoCollaboratorsClient.cs b/Octokit/Clients/RepoCollaboratorsClient.cs
index 099e2e89..b62a9c58 100644
--- a/Octokit/Clients/RepoCollaboratorsClient.cs
+++ b/Octokit/Clients/RepoCollaboratorsClient.cs
@@ -31,7 +31,7 @@ namespace Octokit
/// The owner of the repository
/// The name of the repository
/// Thrown when a general API error occurs.
- /// A of s for the specified repository.
+ ///
public Task> GetAll(string owner, string name)
{
Ensure.ArgumentNotNullOrEmptyString(owner, "owner");
@@ -48,7 +48,7 @@ namespace Octokit
///
/// The id of the repository
/// Thrown when a general API error occurs.
- /// A of s for the specified repository.
+ ///
public Task> GetAll(int repositoryId)
{
return GetAll(repositoryId, ApiOptions.None);
@@ -64,7 +64,7 @@ namespace Octokit
/// The name of the repository
/// Options for changing the API response
/// Thrown when a general API error occurs.
- /// A of s for the specified repository.
+ ///
public Task> GetAll(string owner, string name, ApiOptions options)
{
Ensure.ArgumentNotNullOrEmptyString(owner, "owner");
@@ -83,7 +83,7 @@ namespace Octokit
/// The id of the repository
/// Options for changing the API response
/// Thrown when a general API error occurs.
- /// A of s for the specified repository.
+ ///
public Task> GetAll(int repositoryId, ApiOptions options)
{
Ensure.ArgumentNotNull(options, "options");
@@ -101,7 +101,7 @@ namespace Octokit
/// The name of the repository
/// Username of the prospective collaborator
/// Thrown when a general API error occurs.
- /// True if user is a collaborator else false
+ ///
public async Task IsCollaborator(string owner, string name, string user)
{
Ensure.ArgumentNotNullOrEmptyString(owner, "owner");
@@ -128,7 +128,7 @@ namespace Octokit
/// The id of the repository
/// Username of the prospective collaborator
/// Thrown when a general API error occurs.
- /// True if user is a collaborator else false
+ ///
public async Task IsCollaborator(int repositoryId, string user)
{
Ensure.ArgumentNotNullOrEmptyString(user, "user");
@@ -154,7 +154,7 @@ namespace Octokit
/// The name of the repository
/// Username of the new collaborator
/// Thrown when a general API error occurs.
- ///
+ ///
public Task Add(string owner, string name, string user)
{
Ensure.ArgumentNotNullOrEmptyString(owner, "owner");
@@ -173,7 +173,7 @@ namespace Octokit
/// The id of the repository
/// Username of the new collaborator
/// Thrown when a general API error occurs.
- ///
+ ///
public Task Add(int repositoryId, string user)
{
Ensure.ArgumentNotNullOrEmptyString(user, "user");
@@ -191,7 +191,7 @@ namespace Octokit
/// The name of the repository
/// Username of the deleted collaborator
/// Thrown when a general API error occurs.
- ///
+ ///
public Task Delete(string owner, string name, string user)
{
Ensure.ArgumentNotNullOrEmptyString(owner, "owner");
@@ -210,7 +210,7 @@ namespace Octokit
/// The id of the repository
/// Username of the deleted collaborator
/// Thrown when a general API error occurs.
- ///
+ ///
public Task Delete(int repositoryId, string user)
{
Ensure.ArgumentNotNullOrEmptyString(user, "user");