Skip to content
This repository was archived by the owner on Jun 21, 2023. It is now read-only.

Commit 018fdab

Browse files
Cleanup
1 parent 1cf3c80 commit 018fdab

File tree

5 files changed

+9
-9
lines changed

5 files changed

+9
-9
lines changed

src/GitHub.Exports.Reactive/Services/IGitClient.cs

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -57,7 +57,7 @@ public interface IGitClient
5757
Task Fetch(IRepository repository, UriString remoteUri, params string[] refspecs);
5858

5959
/// <summary>
60-
/// OtherChecks out a branch.
60+
/// Checks out a branch.
6161
/// </summary>
6262
/// <param name="repository">The repository to carry out the checkout on</param>
6363
/// <param name="branchName">The name of the branch</param>
@@ -178,7 +178,7 @@ public interface IGitClient
178178
Task<byte[]> ExtractFileBinary(IRepository repository, string commitSha, string fileName);
179179

180180
/// <summary>
181-
/// OtherChecks whether the latest commit of a file in the repository has the specified file
181+
/// Checks whether the latest commit of a file in the repository has the specified file
182182
/// contents.
183183
/// </summary>
184184
/// <param name="repository">The repository.</param>
@@ -203,7 +203,7 @@ public interface IGitClient
203203
Task<string> GetPullRequestMergeBase(IRepository repo, UriString targetCloneUrl, string baseSha, string headSha, string baseRef, int pullNumber);
204204

205205
/// <summary>
206-
/// OtherChecks whether the current head is pushed to its remote tracking branch.
206+
/// Checks whether the current head is pushed to its remote tracking branch.
207207
/// </summary>
208208
/// <param name="repo">The repository.</param>
209209
/// <returns></returns>

src/GitHub.Exports.Reactive/Services/IPullRequestService.cs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -47,7 +47,7 @@ IObservable<IPullRequestModel> CreatePullRequest(IModelService modelService,
4747
string title, string body);
4848

4949
/// <summary>
50-
/// OtherChecks whether the working directory for the specified repository is in a clean state.
50+
/// Checks whether the working directory for the specified repository is in a clean state.
5151
/// </summary>
5252
/// <param name="repository">The repository.</param>
5353
/// <returns></returns>
@@ -61,7 +61,7 @@ IObservable<IPullRequestModel> CreatePullRequest(IModelService modelService,
6161
IObservable<int> CountSubmodulesToSync(LocalRepositoryModel repository);
6262

6363
/// <summary>
64-
/// OtherChecks out a pull request to a local branch.
64+
/// Checks out a pull request to a local branch.
6565
/// </summary>
6666
/// <param name="repository">The repository.</param>
6767
/// <param name="pullRequest">The pull request details.</param>

src/GitHub.Exports.Reactive/Services/IRepositoryCloneService.cs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -48,7 +48,7 @@ Task CloneOrOpenRepository(
4848
object progress = null);
4949

5050
/// <summary>
51-
/// OtherChecks whether the specified destination directory already exists.
51+
/// Checks whether the specified destination directory already exists.
5252
/// </summary>
5353
/// <param name="path">The destination path.</param>
5454
/// <returns>
@@ -57,7 +57,7 @@ Task CloneOrOpenRepository(
5757
bool DestinationDirectoryExists(string path);
5858

5959
/// <summary>
60-
/// OtherChecks whether the specified destination file already exists.
60+
/// Checks whether the specified destination file already exists.
6161
/// </summary>
6262
/// <param name="path">The destination file.</param>
6363
/// <returns>

src/GitHub.Exports/Models/PullRequestDetailModel.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -93,7 +93,7 @@ public class PullRequestDetailModel
9393
public IReadOnlyList<PullRequestReviewThreadModel> Threads { get; set; }
9494

9595
/// <summary>
96-
/// Gets or sets a collection of pull request OtherChecks Suites
96+
/// Gets or sets a collection of pull request Checks Suites
9797
/// </summary>
9898
public IReadOnlyList<CheckSuiteModel> CheckSuites { get; set; }
9999

src/GitHub.Exports/Services/IEnterpriseCapabilitiesService.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -33,7 +33,7 @@ public interface IEnterpriseCapabilitiesService
3333
Task<EnterpriseProbeResult> Probe(Uri enterpriseBaseUrl);
3434

3535
/// <summary>
36-
/// OtherChecks the login methods supported by an enterprise instance.
36+
/// Checks the login methods supported by an enterprise instance.
3737
/// </summary>
3838
/// <param name="enterpriseBaseUrl">The URL to test.</param>
3939
/// <returns>The supported login methods.</returns>

0 commit comments

Comments
 (0)