Skip to content

Commit

Permalink
CloneVerb: fix typos in error messages
Browse files Browse the repository at this point in the history
  • Loading branch information
chrisd8088 committed Sep 21, 2020
1 parent ee008f4 commit b1828ae
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions Scalar/CommandLine/CloneVerb.cs
Original file line number Diff line number Diff line change
Expand Up @@ -663,7 +663,7 @@ private Result TryInitRepo()
GitProcess.Result initResult = GitProcess.Init(this.enlistment);
if (initResult.ExitCodeIsFailure)
{
string error = string.Format("Could not init repo at to {0}: {1}", repoPath, initResult.Errors);
string error = string.Format("Could not init repo at {0}: {1}", repoPath, initResult.Errors);
this.tracer.RelatedError(error);
return new Result(error);
}
Expand All @@ -685,7 +685,7 @@ private Result TryInitRepo()
GitProcess.Result sparseCheckoutResult = GitProcess.SparseCheckoutInit(this.enlistment);
if (sparseCheckoutResult.ExitCodeIsFailure)
{
string error = string.Format("Could not init sparse-checkout at to {0}: {1}", repoPath, sparseCheckoutResult.Errors);
string error = string.Format("Could not init sparse-checkout at {0}: {1}", repoPath, sparseCheckoutResult.Errors);
this.tracer.RelatedError(error);
return new Result(error);
}
Expand Down

0 comments on commit b1828ae

Please sign in to comment.