diff --git a/Octokit.Reactive/Clients/IObservableCommitsClient.cs b/Octokit.Reactive/Clients/IObservableCommitsClient.cs
index 2c13a031..8d00ccac 100644
--- a/Octokit.Reactive/Clients/IObservableCommitsClient.cs
+++ b/Octokit.Reactive/Clients/IObservableCommitsClient.cs
@@ -20,7 +20,7 @@ namespace Octokit.Reactive
/// The owner of the repository
/// The name of the repository
/// Tha sha reference of the commit
- /// A representing commit for specified repository and reference
+ ///
[SuppressMessage("Microsoft.Naming", "CA1716:IdentifiersShouldNotMatchKeywords", MessageId = "Get",
Justification = "Method makes a network request")]
IObservable Get(string owner, string name, string reference);
@@ -33,7 +33,7 @@ namespace Octokit.Reactive
///
/// The ID of the repository
/// Tha sha reference of the commit
- /// A representing commit for specified repository and reference
+ ///
[SuppressMessage("Microsoft.Naming", "CA1716:IdentifiersShouldNotMatchKeywords", MessageId = "Get",
Justification = "Method makes a network request")]
IObservable Get(int repositoryId, string reference);
@@ -47,7 +47,7 @@ namespace Octokit.Reactive
/// The owner of the repository
/// The name of the repository
/// The commit to create
- /// A of representing created commit for specified repository
+ ///
IObservable Create(string owner, string name, NewCommit commit);
///
@@ -58,7 +58,7 @@ namespace Octokit.Reactive
///
/// The ID of the repository
/// The commit to create
- /// A of representing created commit for specified repository
+ ///
IObservable Create(int repositoryId, NewCommit commit);
}
}
\ No newline at end of file
diff --git a/Octokit.Reactive/Clients/ObservableCommitsClient.cs b/Octokit.Reactive/Clients/ObservableCommitsClient.cs
index 228681af..633b8e88 100644
--- a/Octokit.Reactive/Clients/ObservableCommitsClient.cs
+++ b/Octokit.Reactive/Clients/ObservableCommitsClient.cs
@@ -29,7 +29,7 @@ namespace Octokit.Reactive
/// The owner of the repository
/// The name of the repository
/// Tha sha reference of the commit
- /// A representing commit for specified repository and reference
+ ///
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
/// Tha sha reference of the commit
- /// A representing commit for specified repository and reference
+ ///
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 commit to create
- /// A of representing created commit for specified repository
+ ///
public IObservable Create(string owner, string name, NewCommit commit)
{
Ensure.ArgumentNotNullOrEmptyString(owner, "owner");
@@ -82,7 +82,7 @@ namespace Octokit.Reactive
///
/// The ID of the repository
/// The commit to create
- /// A of representing created commit for specified repository
+ ///
public IObservable Create(int repositoryId, NewCommit commit)
{
Ensure.ArgumentNotNull(commit, "commit");
diff --git a/Octokit/Clients/CommitsClient.cs b/Octokit/Clients/CommitsClient.cs
index f0eff413..55467539 100644
--- a/Octokit/Clients/CommitsClient.cs
+++ b/Octokit/Clients/CommitsClient.cs
@@ -28,7 +28,7 @@ namespace Octokit
/// The owner of the repository
/// The name of the repository
/// Tha sha reference of the commit
- /// A representing commit for specified repository and reference
+ ///
public Task Get(string owner, string name, string reference)
{
Ensure.ArgumentNotNullOrEmptyString(owner, "owner");
@@ -46,7 +46,7 @@ namespace Octokit
///
/// The ID of the repository
/// Tha sha reference of the commit
- /// A representing commit for specified repository and reference
+ ///
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 commit to create
- /// A representing created commit for specified repository
+ ///
public Task Create(string owner, string name, NewCommit commit)
{
Ensure.ArgumentNotNullOrEmptyString(owner, "owner");
@@ -81,7 +81,7 @@ namespace Octokit
///
/// The ID of the repository
/// The commit to create
- /// A representing created commit for specified repository
+ ///
public Task Create(int repositoryId, NewCommit commit)
{
Ensure.ArgumentNotNull(commit, "commit");
diff --git a/Octokit/Clients/ICommitsClient.cs b/Octokit/Clients/ICommitsClient.cs
index 62ff94f7..e2d33a6d 100644
--- a/Octokit/Clients/ICommitsClient.cs
+++ b/Octokit/Clients/ICommitsClient.cs
@@ -20,7 +20,7 @@ namespace Octokit
/// The owner of the repository
/// The name of the repository
/// Tha sha reference of the commit
- /// A representing commit for specified repository and reference
+ ///
[SuppressMessage("Microsoft.Naming", "CA1716:IdentifiersShouldNotMatchKeywords", MessageId = "Get",
Justification = "Method makes a network request")]
Task Get(string owner, string name, string reference);
@@ -33,7 +33,7 @@ namespace Octokit
///
/// The ID of the repository
/// Tha sha reference of the commit
- /// A representing commit for specified repository and reference
+ ///
[SuppressMessage("Microsoft.Naming", "CA1716:IdentifiersShouldNotMatchKeywords", MessageId = "Get",
Justification = "Method makes a network request")]
Task Get(int repositoryId, string reference);
@@ -47,7 +47,7 @@ namespace Octokit
/// The owner of the repository
/// The name of the repository
/// The commit to create
- /// A representing created commit for specified repository
+ ///
Task Create(string owner, string name, NewCommit commit);
///
@@ -58,7 +58,7 @@ namespace Octokit
///
/// The ID of the repository
/// The commit to create
- /// A representing created commit for specified repository
+ ///
Task Create(int repositoryId, NewCommit commit);
}
}
\ No newline at end of file