Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/mono/libgit2sharp.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorEdward Thomson <ethomson@edwardthomson.com>2018-11-06 12:32:29 +0300
committerGitHub <noreply@github.com>2018-11-06 12:32:29 +0300
commit296529319b86054634701e0aa69930cbcb16e75a (patch)
tree70b8b5e9aba50433dca8a17e0cdcc6baf4fb7617
parent8bf6ac57f6508ea214841d2496a019a4597df2b2 (diff)
parente669627eed88e263791a7abcab5d02e27e9a715f (diff)
Merge pull request #1633 from arialdomartini/typo
Typo: path => patch
-rw-r--r--LibGit2Sharp.Tests/PatchEntryChangesFixture.cs2
1 files changed, 1 insertions, 1 deletions
diff --git a/LibGit2Sharp.Tests/PatchEntryChangesFixture.cs b/LibGit2Sharp.Tests/PatchEntryChangesFixture.cs
index c93c55c5..dc2552a1 100644
--- a/LibGit2Sharp.Tests/PatchEntryChangesFixture.cs
+++ b/LibGit2Sharp.Tests/PatchEntryChangesFixture.cs
@@ -23,7 +23,7 @@ namespace LibGit2Sharp.Tests
Tree rootCommitTree = repo.Lookup<Commit>("f8d44d7").Tree;
Tree commitTreeWithUpdatedFile = repo.Lookup<Commit>("ec9e401").Tree;
- // Create path by diffing
+ // Create patch by diffing
using (var patch = repo.Diff.Compare<Patch>(rootCommitTree, commitTreeWithUpdatedFile))
{
PatchEntryChanges entryChanges = patch[file];