cleared <returns> tags

This commit is contained in:
Alexander Efremov
2016-06-17 05:41:03 +07:00
parent b13422f64b
commit b198b47254
4 changed files with 24 additions and 24 deletions

View File

@@ -19,7 +19,7 @@ namespace Octokit.Reactive
/// <param name="owner">The owner of the repository</param>
/// <param name="name">The name of the repository</param>
/// <param name="reference">The SHA that references the tree</param>
/// <returns>The <see cref="TreeResponse"/> for the specified Tree.</returns>
/// <returns></returns>
[System.Diagnostics.CodeAnalysis.SuppressMessage("Microsoft.Naming", "CA1716:IdentifiersShouldNotMatchKeywords", MessageId = "Get")]
IObservable<TreeResponse> Get(string owner, string name, string reference);
@@ -31,7 +31,7 @@ namespace Octokit.Reactive
/// </remarks>
/// <param name="repositoryId">The ID of the repository</param>
/// <param name="reference">The SHA that references the tree</param>
/// <returns>The <see cref="TreeResponse"/> for the specified Tree.</returns>
/// <returns></returns>
[System.Diagnostics.CodeAnalysis.SuppressMessage("Microsoft.Naming", "CA1716:IdentifiersShouldNotMatchKeywords", MessageId = "Get")]
IObservable<TreeResponse> Get(int repositoryId, string reference);
@@ -44,7 +44,7 @@ namespace Octokit.Reactive
/// <param name="owner">The owner of the repository</param>
/// <param name="name">The name of the repository</param>
/// <param name="reference">The SHA that references the tree</param>
/// <returns>The <see cref="TreeResponse"/> for the specified Tree.</returns>
/// <returns></returns>
IObservable<TreeResponse> GetRecursive(string owner, string name, string reference);
/// <summary>
@@ -55,7 +55,7 @@ namespace Octokit.Reactive
/// </remarks>
/// <param name="repositoryId">The ID of the repository</param>
/// <param name="reference">The SHA that references the tree</param>
/// <returns>The <see cref="TreeResponse"/> for the specified Tree.</returns>
/// <returns></returns>
IObservable<TreeResponse> GetRecursive(int repositoryId, string reference);
/// <summary>
@@ -67,7 +67,7 @@ namespace Octokit.Reactive
/// <param name="owner">The owner of the repository</param>
/// <param name="name">The name of the repository</param>
/// <param name="newTree">The value of the new tree</param>
/// <returns>The <see cref="TreeResponse"/> that was just created.</returns>
/// <returns></returns>
IObservable<TreeResponse> Create(string owner, string name, NewTree newTree);
/// <summary>
@@ -78,7 +78,7 @@ namespace Octokit.Reactive
/// </remarks>
/// <param name="repositoryId">The ID of the repository</param>
/// <param name="newTree">The value of the new tree</param>
/// <returns>The <see cref="TreeResponse"/> that was just created.</returns>
/// <returns></returns>
IObservable<TreeResponse> Create(int repositoryId, NewTree newTree);
}
}

View File

@@ -29,7 +29,7 @@ namespace Octokit.Reactive
/// <param name="owner">The owner of the repository</param>
/// <param name="name">The name of the repository</param>
/// <param name="reference">The SHA that references the tree</param>
/// <returns>The <see cref="TreeResponse"/> for the specified Tree.</returns>
/// <returns></returns>
public IObservable<TreeResponse> Get(string owner, string name, string reference)
{
Ensure.ArgumentNotNullOrEmptyString(owner, "owner");
@@ -47,7 +47,7 @@ namespace Octokit.Reactive
/// </remarks>
/// <param name="repositoryId">The ID of the repository</param>
/// <param name="reference">The SHA that references the tree</param>
/// <returns>The <see cref="TreeResponse"/> for the specified Tree.</returns>
/// <returns></returns>
public IObservable<TreeResponse> Get(int repositoryId, string reference)
{
Ensure.ArgumentNotNullOrEmptyString(reference, "reference");
@@ -64,7 +64,7 @@ namespace Octokit.Reactive
/// <param name="owner">The owner of the repository</param>
/// <param name="name">The name of the repository</param>
/// <param name="reference">The SHA that references the tree</param>
/// <returns>The <see cref="TreeResponse"/> for the specified Tree.</returns>
/// <returns></returns>
public IObservable<TreeResponse> GetRecursive(string owner, string name, string reference)
{
Ensure.ArgumentNotNullOrEmptyString(owner, "owner");
@@ -82,7 +82,7 @@ namespace Octokit.Reactive
/// </remarks>
/// <param name="repositoryId">The ID of the repository</param>
/// <param name="reference">The SHA that references the tree</param>
/// <returns>The <see cref="TreeResponse"/> for the specified Tree.</returns>
/// <returns></returns>
public IObservable<TreeResponse> GetRecursive(int repositoryId, string reference)
{
Ensure.ArgumentNotNullOrEmptyString(reference, "reference");
@@ -99,7 +99,7 @@ namespace Octokit.Reactive
/// <param name="owner">The owner of the repository</param>
/// <param name="name">The name of the repository</param>
/// <param name="newTree">The value of the new tree</param>
/// <returns>The <see cref="TreeResponse"/> that was just created.</returns>
/// <returns></returns>
public IObservable<TreeResponse> Create(string owner, string name, NewTree newTree)
{
Ensure.ArgumentNotNullOrEmptyString(owner, "owner");
@@ -117,7 +117,7 @@ namespace Octokit.Reactive
/// </remarks>
/// <param name="repositoryId">The ID of the repository</param>
/// <param name="newTree">The value of the new tree</param>
/// <returns>The <see cref="TreeResponse"/> that was just created.</returns>
/// <returns></returns>
public IObservable<TreeResponse> Create(int repositoryId, NewTree newTree)
{
Ensure.ArgumentNotNull(newTree, "newTree");

View File

@@ -19,7 +19,7 @@ namespace Octokit
/// <param name="owner">The owner of the repository</param>
/// <param name="name">The name of the repository</param>
/// <param name="reference">The SHA that references the tree</param>
/// <returns>The <see cref="TreeResponse"/> for the specified Tree.</returns>
/// <returns></returns>
[System.Diagnostics.CodeAnalysis.SuppressMessage("Microsoft.Naming", "CA1716:IdentifiersShouldNotMatchKeywords", MessageId = "Get")]
Task<TreeResponse> Get(string owner, string name, string reference);
@@ -31,7 +31,7 @@ namespace Octokit
/// </remarks>
/// <param name="repositoryId">The ID of the repository</param>
/// <param name="reference">The SHA that references the tree</param>
/// <returns>The <see cref="TreeResponse"/> for the specified Tree.</returns>
/// <returns></returns>
[System.Diagnostics.CodeAnalysis.SuppressMessage("Microsoft.Naming", "CA1716:IdentifiersShouldNotMatchKeywords", MessageId = "Get")]
Task<TreeResponse> Get(int repositoryId, string reference);
@@ -44,7 +44,7 @@ namespace Octokit
/// <param name="owner">The owner of the repository</param>
/// <param name="name">The name of the repository</param>
/// <param name="reference">The SHA that references the tree</param>
/// <returns>The <see cref="TreeResponse"/> for the specified Tree.</returns>
/// <returns></returns>
Task<TreeResponse> GetRecursive(string owner, string name, string reference);
/// <summary>
@@ -55,7 +55,7 @@ namespace Octokit
/// </remarks>
/// <param name="repositoryId">The ID of the repository</param>
/// <param name="reference">The SHA that references the tree</param>
/// <returns>The <see cref="TreeResponse"/> for the specified Tree.</returns>
/// <returns></returns>
Task<TreeResponse> GetRecursive(int repositoryId, string reference);
/// <summary>
@@ -67,7 +67,7 @@ namespace Octokit
/// <param name="owner">The owner of the repository</param>
/// <param name="name">The name of the repository</param>
/// <param name="newTree">The value of the new tree</param>
/// <returns>The <see cref="TreeResponse"/> that was just created.</returns>
/// <returns></returns>
Task<TreeResponse> Create(string owner, string name, NewTree newTree);
/// <summary>
@@ -78,7 +78,7 @@ namespace Octokit
/// </remarks>
/// <param name="repositoryId">The ID of the repository</param>
/// <param name="newTree">The value of the new tree</param>
/// <returns>The <see cref="TreeResponse"/> that was just created.</returns>
/// <returns></returns>
Task<TreeResponse> Create(int repositoryId, NewTree newTree);
}
}

View File

@@ -30,7 +30,7 @@ namespace Octokit
/// <param name="owner">The owner of the repository</param>
/// <param name="name">The name of the repository</param>
/// <param name="reference">The SHA that references the tree</param>
/// <returns>The <see cref="TreeResponse"/> for the specified Tree.</returns>
/// <returns></returns>
public Task<TreeResponse> Get(string owner, string name, string reference)
{
Ensure.ArgumentNotNullOrEmptyString(owner, "owner");
@@ -48,7 +48,7 @@ namespace Octokit
/// </remarks>
/// <param name="repositoryId">The ID of the repository</param>
/// <param name="reference">The SHA that references the tree</param>
/// <returns>The <see cref="TreeResponse"/> for the specified Tree.</returns>
/// <returns></returns>
public Task<TreeResponse> Get(int repositoryId, string reference)
{
Ensure.ArgumentNotNullOrEmptyString(reference, "reference");
@@ -65,7 +65,7 @@ namespace Octokit
/// <param name="owner">The owner of the repository</param>
/// <param name="name">The name of the repository</param>
/// <param name="reference">The SHA that references the tree</param>
/// <returns>The <see cref="TreeResponse"/> for the specified Tree.</returns>
/// <returns></returns>
public Task<TreeResponse> GetRecursive(string owner, string name, string reference)
{
Ensure.ArgumentNotNullOrEmptyString(owner, "owner");
@@ -83,7 +83,7 @@ namespace Octokit
/// </remarks>
/// <param name="repositoryId">The ID of the repository</param>
/// <param name="reference">The SHA that references the tree</param>
/// <returns>The <see cref="TreeResponse"/> for the specified Tree.</returns>
/// <returns></returns>
public Task<TreeResponse> GetRecursive(int repositoryId, string reference)
{
Ensure.ArgumentNotNullOrEmptyString(reference, "reference");
@@ -100,7 +100,7 @@ namespace Octokit
/// <param name="owner">The owner of the repository</param>
/// <param name="name">The name of the repository</param>
/// <param name="newTree">The value of the new tree</param>
/// <returns>The <see cref="TreeResponse"/> that was just created.</returns>
/// <returns></returns>
public Task<TreeResponse> Create(string owner, string name, NewTree newTree)
{
Ensure.ArgumentNotNullOrEmptyString(owner, "owner");
@@ -123,7 +123,7 @@ namespace Octokit
/// </remarks>
/// <param name="repositoryId">The ID of the repository</param>
/// <param name="newTree">The value of the new tree</param>
/// <returns>The <see cref="TreeResponse"/> that was just created.</returns>
/// <returns></returns>
public Task<TreeResponse> Create(int repositoryId, NewTree newTree)
{
Ensure.ArgumentNotNull(newTree, "newTree");