diff --git a/Octokit.Reactive/Clients/IObservableBlobsClient.cs b/Octokit.Reactive/Clients/IObservableBlobsClient.cs index 9079cd0b..f254ab96 100644 --- a/Octokit.Reactive/Clients/IObservableBlobsClient.cs +++ b/Octokit.Reactive/Clients/IObservableBlobsClient.cs @@ -19,7 +19,7 @@ namespace Octokit.Reactive /// The owner of the repository /// The name of the repository /// The SHA of the blob - /// The for the specified SHA. + /// [System.Diagnostics.CodeAnalysis.SuppressMessage("Microsoft.Naming", "CA1716:IdentifiersShouldNotMatchKeywords", MessageId = "Get")] IObservable Get(string owner, string name, string reference); @@ -31,7 +31,7 @@ namespace Octokit.Reactive /// /// The ID of the repository /// The SHA of the blob - /// The for the specified SHA. + /// [System.Diagnostics.CodeAnalysis.SuppressMessage("Microsoft.Naming", "CA1716:IdentifiersShouldNotMatchKeywords", MessageId = "Get")] IObservable Get(int repositoryId, string reference); @@ -44,7 +44,7 @@ namespace Octokit.Reactive /// The owner of the repository /// The name of the repository /// The new Blob - /// The that was just created. + /// IObservable Create(string owner, string name, NewBlob newBlob); /// @@ -55,7 +55,7 @@ namespace Octokit.Reactive /// /// The ID of the repository /// The new Blob - /// The that was just created. + /// IObservable Create(int repositoryId, NewBlob newBlob); } } \ No newline at end of file diff --git a/Octokit.Reactive/Clients/ObservableBlobClient.cs b/Octokit.Reactive/Clients/ObservableBlobClient.cs index d1d9c16d..6636b496 100644 --- a/Octokit.Reactive/Clients/ObservableBlobClient.cs +++ b/Octokit.Reactive/Clients/ObservableBlobClient.cs @@ -29,7 +29,7 @@ namespace Octokit.Reactive /// The owner of the repository /// The name of the repository /// The SHA of the blob - /// The for the specified SHA. + /// public IObservable Get(string owner, string name, string reference) { Ensure.ArgumentNotNullOrEmptyString(owner, "owner"); @@ -47,7 +47,7 @@ namespace Octokit.Reactive /// /// The ID of the repository /// The SHA of the blob - /// The for the specified SHA. + /// public IObservable Get(int repositoryId, string reference) { Ensure.ArgumentNotNullOrEmptyString(reference, "reference"); @@ -64,7 +64,7 @@ namespace Octokit.Reactive /// The owner of the repository /// The name of the repository /// The new Blob - /// The that was just created. + /// public IObservable Create(string owner, string name, NewBlob newBlob) { Ensure.ArgumentNotNullOrEmptyString(owner, "owner"); @@ -82,7 +82,7 @@ namespace Octokit.Reactive /// /// The ID of the repository /// The new Blob - /// The that was just created. + /// public IObservable Create(int repositoryId, NewBlob newBlob) { Ensure.ArgumentNotNull(newBlob, "newBlob"); diff --git a/Octokit/Clients/BlobsClient.cs b/Octokit/Clients/BlobsClient.cs index 0906a038..04da93e5 100644 --- a/Octokit/Clients/BlobsClient.cs +++ b/Octokit/Clients/BlobsClient.cs @@ -28,7 +28,7 @@ namespace Octokit /// The owner of the repository /// The name of the repository /// The SHA of the blob - /// The for the specified SHA. + /// public Task Get(string owner, string name, string reference) { Ensure.ArgumentNotNullOrEmptyString(owner, "owner"); @@ -46,7 +46,7 @@ namespace Octokit /// /// The ID of the repository /// The SHA of the blob - /// The for the specified SHA. + /// public Task Get(int repositoryId, string reference) { Ensure.ArgumentNotNullOrEmptyString(reference, "reference"); @@ -63,7 +63,7 @@ namespace Octokit /// The owner of the repository /// The name of the repository /// The new Blob - /// The that was just created. + /// public Task Create(string owner, string name, NewBlob newBlob) { Ensure.ArgumentNotNullOrEmptyString(owner, "owner"); @@ -81,7 +81,7 @@ namespace Octokit /// /// The ID of the repository /// The new Blob - /// The that was just created. + /// public Task Create(int repositoryId, NewBlob newBlob) { Ensure.ArgumentNotNull(newBlob, "newBlob"); diff --git a/Octokit/Clients/IBlobsClient.cs b/Octokit/Clients/IBlobsClient.cs index 0af4a4c6..6bc3eff7 100644 --- a/Octokit/Clients/IBlobsClient.cs +++ b/Octokit/Clients/IBlobsClient.cs @@ -19,7 +19,7 @@ namespace Octokit /// The owner of the repository /// The name of the repository /// The SHA of the blob - /// The for the specified SHA. + /// [System.Diagnostics.CodeAnalysis.SuppressMessage("Microsoft.Naming", "CA1716:IdentifiersShouldNotMatchKeywords", MessageId = "Get")] Task Get(string owner, string name, string reference); @@ -31,7 +31,7 @@ namespace Octokit /// /// The ID of the repository /// The SHA of the blob - /// The for the specified SHA. + /// [System.Diagnostics.CodeAnalysis.SuppressMessage("Microsoft.Naming", "CA1716:IdentifiersShouldNotMatchKeywords", MessageId = "Get")] Task Get(int repositoryId, string reference); @@ -44,7 +44,7 @@ namespace Octokit /// The owner of the repository /// The name of the repository /// The new Blob - /// The that was just created. + /// Task Create(string owner, string name, NewBlob newBlob); /// @@ -55,7 +55,7 @@ namespace Octokit /// /// The ID of the repository /// The new Blob - /// The that was just created. + /// Task Create(int repositoryId, NewBlob newBlob); } } \ No newline at end of file