mirror of
https://github.com/zoriya/octokit.net.git
synced 2025-12-23 07:35:25 +00:00
removed <retuns> tags
This commit is contained in:
@@ -19,7 +19,6 @@ 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 of the blob</param>
|
||||
/// <returns></returns>
|
||||
[System.Diagnostics.CodeAnalysis.SuppressMessage("Microsoft.Naming", "CA1716:IdentifiersShouldNotMatchKeywords", MessageId = "Get")]
|
||||
IObservable<Blob> Get(string owner, string name, string reference);
|
||||
|
||||
@@ -31,7 +30,6 @@ namespace Octokit.Reactive
|
||||
/// </remarks>
|
||||
/// <param name="repositoryId">The ID of the repository</param>
|
||||
/// <param name="reference">The SHA of the blob</param>
|
||||
/// <returns></returns>
|
||||
[System.Diagnostics.CodeAnalysis.SuppressMessage("Microsoft.Naming", "CA1716:IdentifiersShouldNotMatchKeywords", MessageId = "Get")]
|
||||
IObservable<Blob> Get(int repositoryId, string reference);
|
||||
|
||||
@@ -44,7 +42,6 @@ namespace Octokit.Reactive
|
||||
/// <param name="owner">The owner of the repository</param>
|
||||
/// <param name="name">The name of the repository</param>
|
||||
/// <param name="newBlob">The new Blob</param>
|
||||
/// <returns></returns>
|
||||
IObservable<BlobReference> Create(string owner, string name, NewBlob newBlob);
|
||||
|
||||
/// <summary>
|
||||
@@ -55,7 +52,6 @@ namespace Octokit.Reactive
|
||||
/// </remarks>
|
||||
/// <param name="repositoryId">The ID of the repository</param>
|
||||
/// <param name="newBlob">The new Blob</param>
|
||||
/// <returns></returns>
|
||||
IObservable<BlobReference> Create(int repositoryId, NewBlob newBlob);
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user