cleared <returns> tags

This commit is contained in:
Alexander Efremov
2016-06-17 05:37:58 +07:00
parent 763ee76378
commit a09dd85fee
4 changed files with 24 additions and 24 deletions

View File

@@ -15,14 +15,14 @@ namespace Octokit.Reactive
/// </summary>
/// <param name="owner">The owner of the repository</param>
/// <param name="name">The name of the repository</param>
/// <returns>A <see cref="IObservable{User}"/> of <see cref="User"/>s representing assignees of specified repository.</returns>
/// <returns></returns>
IObservable<User> GetAllForRepository(string owner, string name);
/// <summary>
/// Gets all the available assignees (owner + collaborators) to which issues may be assigned.
/// </summary>
/// <param name="repositoryId">The ID of the repository</param>
/// <returns>A <see cref="IObservable{User}"/> of <see cref="User"/>s representing assignees of specified repository.</returns>
/// <returns></returns>
IObservable<User> GetAllForRepository(int repositoryId);
/// <summary>
@@ -31,7 +31,7 @@ namespace Octokit.Reactive
/// <param name="owner">The owner of the repository</param>
/// <param name="name">The name of the repository</param>
/// <param name="options">The options to change API's behaviour.</param>
/// <returns>A <see cref="IObservable{User}"/> of <see cref="User"/>s representing assignees of specified repository.</returns>
/// <returns></returns>
IObservable<User> GetAllForRepository(string owner, string name, ApiOptions options);
/// <summary>
@@ -39,7 +39,7 @@ namespace Octokit.Reactive
/// </summary>
/// <param name="repositoryId">The ID of the repository</param>
/// <param name="options">The options to change API's behaviour.</param>
/// <returns>A <see cref="IObservable{User}"/> of <see cref="User"/>s representing assignees of specified repository.</returns>
/// <returns></returns>
IObservable<User> GetAllForRepository(int repositoryId, ApiOptions options);
/// <summary>
@@ -48,7 +48,7 @@ namespace Octokit.Reactive
/// <param name="owner">The owner of the repository</param>
/// <param name="name">The name of the repository</param>
/// <param name="assignee">Username of the prospective assignee</param>
/// <returns>A <see cref="IObservable{Bool}"/> of <see cref="bool"/> representing is a user is an assignee for a repository.</returns>
/// <returns></returns>
IObservable<bool> CheckAssignee(string owner, string name, string assignee);
/// <summary>
@@ -56,7 +56,7 @@ namespace Octokit.Reactive
/// </summary>
/// <param name="repositoryId">The ID of the repository</param>
/// <param name="assignee">Username of the prospective assignee</param>
/// <returns>A <see cref="IObservable{Bool}"/> of <see cref="bool"/> representing is a user is an assignee for a repository.</returns>
/// <returns></returns>
IObservable<bool> CheckAssignee(int repositoryId, string assignee);
}
}