updated XML documentation of IObservableRepoCollaboratorsClient

This commit is contained in:
aedampir@gmail.com
2016-05-19 15:11:09 +07:00
parent ae6c5b7405
commit d2719f635f
3 changed files with 7 additions and 7 deletions
@@ -142,7 +142,7 @@ namespace Octokit.Reactive
/// </remarks>
/// <param name="owner">The owner of the repository</param>
/// <param name="name">The name of the repository</param>
/// <param name="user">Username of the prospective collaborator</param>
/// <param name="user">Username of the new collaborator</param>
/// <exception cref="ApiException">Thrown when a general API error occurs.</exception>
/// <returns><see cref="Unit"/></returns>
public IObservable<Unit> Add(string owner, string name, string user)
@@ -179,7 +179,7 @@ namespace Octokit.Reactive
/// </remarks>
/// <param name="owner">The owner of the repository</param>
/// <param name="name">The name of the repository</param>
/// <param name="user">Username of the prospective collaborator</param>
/// <param name="user">Username of the deleted collaborator</param>
/// <exception cref="ApiException">Thrown when a general API error occurs.</exception>
/// <returns><see cref="Unit"/></returns>
public IObservable<Unit> Delete(string owner, string name, string user)
@@ -198,7 +198,7 @@ namespace Octokit.Reactive
/// See the <a href="http://developer.github.com/v3/repos/collaborators/#remove-collaborator">API documentation</a> for more information.
/// </remarks>
/// <param name="repositoryId">The id of the repository</param>
/// <param name="user">Username of the removed collaborator</param>
/// <param name="user">Username of the deleted collaborator</param>
/// <exception cref="ApiException">Thrown when a general API error occurs.</exception>
/// <returns><see cref="Unit"/></returns>
public IObservable<Unit> Delete(int repositoryId, string user)