mirror of
https://github.com/zoriya/octokit.net.git
synced 2025-12-21 06:35:11 +00:00
cleared <returns> tags
This commit is contained in:
@@ -26,7 +26,7 @@ namespace Octokit.Reactive
|
||||
/// </summary>
|
||||
/// <param name="owner">The owner of the repository</param>
|
||||
/// <param name="name">The name of the repository</param>
|
||||
/// <returns>A list of <see cref="Contributor"/></returns>
|
||||
/// <returns></returns>
|
||||
public IObservable<IEnumerable<Contributor>> GetContributors(string owner, string name)
|
||||
{
|
||||
Ensure.ArgumentNotNullOrEmptyString(owner, "owner");
|
||||
@@ -39,7 +39,7 @@ namespace Octokit.Reactive
|
||||
/// Returns a list of <see cref="Contributor"/> for the given repository
|
||||
/// </summary>
|
||||
/// <param name="repositoryId">The ID of the repository</param>
|
||||
/// <returns>A list of <see cref="Contributor"/></returns>
|
||||
/// <returns></returns>
|
||||
public IObservable<IEnumerable<Contributor>> GetContributors(int repositoryId)
|
||||
{
|
||||
return _client.Repository.Statistics.GetContributors(repositoryId).ToObservable();
|
||||
@@ -50,7 +50,7 @@ namespace Octokit.Reactive
|
||||
/// </summary>
|
||||
/// <param name="owner">The owner of the repository</param>
|
||||
/// <param name="name">The name of the repository</param>
|
||||
/// <returns>The last year of <see cref="CommitActivity"/></returns>
|
||||
/// <returns></returns>
|
||||
public IObservable<CommitActivity> GetCommitActivity(string owner, string name)
|
||||
{
|
||||
Ensure.ArgumentNotNullOrEmptyString(owner, "owner");
|
||||
@@ -63,7 +63,7 @@ namespace Octokit.Reactive
|
||||
/// Returns the last year of commit activity grouped by week.
|
||||
/// </summary>
|
||||
/// <param name="repositoryId">The ID of the repository</param>
|
||||
/// <returns>The last year of <see cref="CommitActivity"/></returns>
|
||||
/// <returns></returns>
|
||||
public IObservable<CommitActivity> GetCommitActivity(int repositoryId)
|
||||
{
|
||||
return _client.Repository.Statistics.GetCommitActivity(repositoryId).ToObservable();
|
||||
@@ -74,7 +74,7 @@ namespace Octokit.Reactive
|
||||
/// </summary>
|
||||
/// <param name="owner">The owner of the repository</param>
|
||||
/// <param name="name">The name of the repository</param>
|
||||
/// <returns>Returns a weekly aggregate of the number additions and deletion</returns>
|
||||
/// <returns></returns>
|
||||
public IObservable<CodeFrequency> GetCodeFrequency(string owner, string name)
|
||||
{
|
||||
Ensure.ArgumentNotNullOrEmptyString(owner, "owner");
|
||||
@@ -87,7 +87,7 @@ namespace Octokit.Reactive
|
||||
/// Returns a weekly aggregate of the number of additions and deletions pushed to a repository.
|
||||
/// </summary>
|
||||
/// <param name="repositoryId">The ID of the repository</param>
|
||||
/// <returns>Returns a weekly aggregate of the number additions and deletion</returns>
|
||||
/// <returns></returns>
|
||||
public IObservable<CodeFrequency> GetCodeFrequency(int repositoryId)
|
||||
{
|
||||
return _client.Repository.Statistics.GetCodeFrequency(repositoryId).ToObservable();
|
||||
@@ -98,7 +98,7 @@ namespace Octokit.Reactive
|
||||
/// </summary>
|
||||
/// <param name="owner">The owner of the repository</param>
|
||||
/// <param name="name">The name of the repository</param>
|
||||
/// <returns>Returns <see cref="Participation"/>from oldest week to now</returns>
|
||||
/// <returns></returns>
|
||||
public IObservable<Participation> GetParticipation(string owner, string name)
|
||||
{
|
||||
Ensure.ArgumentNotNullOrEmptyString(owner, "owner");
|
||||
@@ -111,7 +111,7 @@ namespace Octokit.Reactive
|
||||
/// Returns the total commit counts for the owner and total commit counts in total.
|
||||
/// </summary>
|
||||
/// <param name="repositoryId">The ID of the repository</param>
|
||||
/// <returns>Returns <see cref="Participation"/>from oldest week to now</returns>
|
||||
/// <returns></returns>
|
||||
public IObservable<Participation> GetParticipation(int repositoryId)
|
||||
{
|
||||
return _client.Repository.Statistics.GetParticipation(repositoryId).ToObservable();
|
||||
@@ -122,7 +122,7 @@ namespace Octokit.Reactive
|
||||
/// </summary>
|
||||
/// <param name="owner">The owner of the repository</param>
|
||||
/// <param name="name">The name of the repository</param>
|
||||
/// <returns>Returns commit counts per hour in each day</returns>
|
||||
/// <returns></returns>
|
||||
public IObservable<PunchCard> GetPunchCard(string owner, string name)
|
||||
{
|
||||
Ensure.ArgumentNotNullOrEmptyString(owner, "owner");
|
||||
@@ -135,7 +135,7 @@ namespace Octokit.Reactive
|
||||
/// Returns a list of the number of commits per hour in each day
|
||||
/// </summary>
|
||||
/// <param name="repositoryId">The ID of the repository</param>
|
||||
/// <returns>Returns commit counts per hour in each day</returns>
|
||||
/// <returns></returns>
|
||||
public IObservable<PunchCard> GetPunchCard(int repositoryId)
|
||||
{
|
||||
return _client.Repository.Statistics.GetPunchCard(repositoryId).ToObservable();
|
||||
|
||||
Reference in New Issue
Block a user