From e669627eed88e263791a7abcab5d02e27e9a715f Mon Sep 17 00:00:00 2001 From: Arialdo Martini Date: Sat, 3 Nov 2018 09:43:42 +0100 Subject: [PATCH] Typo: path => patch --- LibGit2Sharp.Tests/PatchEntryChangesFixture.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/LibGit2Sharp.Tests/PatchEntryChangesFixture.cs b/LibGit2Sharp.Tests/PatchEntryChangesFixture.cs index c93c55c5f..dc2552a10 100644 --- a/LibGit2Sharp.Tests/PatchEntryChangesFixture.cs +++ b/LibGit2Sharp.Tests/PatchEntryChangesFixture.cs @@ -23,7 +23,7 @@ public void PatchEntryBasics() Tree rootCommitTree = repo.Lookup("f8d44d7").Tree; Tree commitTreeWithUpdatedFile = repo.Lookup("ec9e401").Tree; - // Create path by diffing + // Create patch by diffing using (var patch = repo.Diff.Compare(rootCommitTree, commitTreeWithUpdatedFile)) { PatchEntryChanges entryChanges = patch[file];