diff --git a/Octokit.Reactive/Clients/IObservableCheckRunsClient.cs b/Octokit.Reactive/Clients/IObservableCheckRunsClient.cs
index 6ec0c8ec2e..1d8f4822fd 100644
--- a/Octokit.Reactive/Clients/IObservableCheckRunsClient.cs
+++ b/Octokit.Reactive/Clients/IObservableCheckRunsClient.cs
@@ -11,7 +11,7 @@ namespace Octokit.Reactive
public interface IObservableCheckRunsClient
{
///
- /// Creates a new Check Run
+ /// Creates a new check run for a specific commit in a repository.
///
///
/// See the Check Runs API documentation for more information.
@@ -22,7 +22,7 @@ public interface IObservableCheckRunsClient
IObservable Create(string owner, string name, NewCheckRun newCheckRun);
///
- /// Creates a new Check Run
+ /// Creates a new check run for a specific commit in a repository.
///
///
/// See the Check Runs API documentation for more information.
@@ -32,7 +32,7 @@ public interface IObservableCheckRunsClient
IObservable Create(long repositoryId, NewCheckRun newCheckRun);
///
- /// Updates a Check Run
+ /// Updates a check run for a specific commit in a repository.
///
///
/// See the Check Runs API documentation for more information.
@@ -44,7 +44,7 @@ public interface IObservableCheckRunsClient
IObservable Update(string owner, string name, long checkRunId, CheckRunUpdate checkRunUpdate);
///
- /// Updates a Check Run
+ /// Updates a check run for a specific commit in a repository.
///
///
/// See the Check Runs API documentation for more information.
diff --git a/Octokit.Reactive/Clients/ObservableCheckRunsClient.cs b/Octokit.Reactive/Clients/ObservableCheckRunsClient.cs
index e156c57595..ccc29c7081 100644
--- a/Octokit.Reactive/Clients/ObservableCheckRunsClient.cs
+++ b/Octokit.Reactive/Clients/ObservableCheckRunsClient.cs
@@ -28,7 +28,7 @@ public ObservableCheckRunsClient(IGitHubClient client)
}
///
- /// Creates a new Check Run
+ /// Creates a new check run for a specific commit in a repository.
///
///
/// See the Check Runs API documentation for more information.
@@ -46,7 +46,7 @@ public IObservable Create(string owner, string name, NewCheckRun newCh
}
///
- /// Creates a new Check Run
+ /// Creates a new check run for a specific commit in a repository.
///
///
/// See the Check Runs API documentation for more information.
@@ -61,7 +61,7 @@ public IObservable Create(long repositoryId, NewCheckRun newCheckRun)
}
///
- /// Updates a Check Run
+ /// Updates a check run for a specific commit in a repository.
///
///
/// See the Check Runs API documentation for more information.
@@ -80,7 +80,7 @@ public IObservable Update(string owner, string name, long checkRunId,
}
///
- /// Updates a Check Run
+ /// Updates a check run for a specific commit in a repository.
///
///
/// See the Check Runs API documentation for more information.
diff --git a/Octokit.Tests.Integration/Clients/CheckRunsClientTests.cs b/Octokit.Tests.Integration/Clients/CheckRunsClientTests.cs
index 06ae17cd5e..cedbd16b54 100644
--- a/Octokit.Tests.Integration/Clients/CheckRunsClientTests.cs
+++ b/Octokit.Tests.Integration/Clients/CheckRunsClientTests.cs
@@ -259,7 +259,7 @@ public async Task GetsAllCheckRuns()
CheckName = "name",
Status = CheckStatusFilter.InProgress
};
-
+
var checkRuns = await _githubAppInstallation.Check.Run.GetAllForCheckSuite(repoContext.RepositoryOwner, repoContext.RepositoryName, created.CheckSuite.Id, request);
// Check result
diff --git a/Octokit/Clients/CheckRunsClient.cs b/Octokit/Clients/CheckRunsClient.cs
index 593ee24fdc..dd62b8c093 100644
--- a/Octokit/Clients/CheckRunsClient.cs
+++ b/Octokit/Clients/CheckRunsClient.cs
@@ -1,5 +1,4 @@
using System;
-using System.Collections.Generic;
using System.Linq;
using System.Threading.Tasks;
@@ -22,7 +21,7 @@ public CheckRunsClient(IApiConnection apiConnection) : base(apiConnection)
}
///
- /// Creates a new Check Run
+ /// Creates a new check run for a specific commit in a repository.
///
///
/// See the Check Runs API documentation for more information.
@@ -40,7 +39,7 @@ public Task Create(string owner, string name, NewCheckRun newCheckRun)
}
///
- /// Creates a new Check Run
+ /// Creates a new check run for a specific commit in a repository.
///
///
/// See the Check Runs API documentation for more information.
@@ -55,7 +54,7 @@ public Task Create(long repositoryId, NewCheckRun newCheckRun)
}
///
- /// Updates a Check Run
+ /// Updates a check run for a specific commit in a repository.
///
///
/// See the Check Runs API documentation for more information.
@@ -74,7 +73,7 @@ public Task Update(string owner, string name, long checkRunId, CheckRu
}
///
- /// Updates a Check Run
+ /// Updates a check run for a specific commit in a repository.
///
///
/// See the Check Runs API documentation for more information.
diff --git a/Octokit/Clients/ICheckRunsClient.cs b/Octokit/Clients/ICheckRunsClient.cs
index 92494bfa14..253e1fa0dc 100644
--- a/Octokit/Clients/ICheckRunsClient.cs
+++ b/Octokit/Clients/ICheckRunsClient.cs
@@ -1,5 +1,4 @@
-using System.Collections.Generic;
-using System.Threading.Tasks;
+using System.Threading.Tasks;
namespace Octokit
{
@@ -12,7 +11,7 @@ namespace Octokit
public interface ICheckRunsClient
{
///
- /// Creates a new Check Run
+ /// Creates a new check run for a specific commit in a repository.
///
///
/// See the Check Runs API documentation for more information.
@@ -23,7 +22,7 @@ public interface ICheckRunsClient
Task Create(string owner, string name, NewCheckRun newCheckRun);
///
- /// Creates a new Check Run
+ /// Creates a new check run for a specific commit in a repository.
///
///
/// See the Check Runs API documentation for more information.
@@ -33,7 +32,7 @@ public interface ICheckRunsClient
Task Create(long repositoryId, NewCheckRun newCheckRun);
///
- /// Updates a Check Run
+ /// Updates a check run for a specific commit in a repository.
///
///
/// See the Check Runs API documentation for more information.
@@ -45,7 +44,7 @@ public interface ICheckRunsClient
Task Update(string owner, string name, long checkRunId, CheckRunUpdate checkRunUpdate);
///
- /// Updates a Check Run
+ /// Updates a check run for a specific commit in a repository.
///
///
/// See the Check Runs API documentation for more information.