diff --git a/LibGit2Sharp/CompareOptions.cs b/LibGit2Sharp/CompareOptions.cs index 6e9acb434..6b3acdfe6 100644 --- a/LibGit2Sharp/CompareOptions.cs +++ b/LibGit2Sharp/CompareOptions.cs @@ -14,7 +14,7 @@ public CompareOptions() { ContextLines = 3; InterhunkLines = 0; - Algorithm = DiffAlgorithm.Meyers; + Algorithm = DiffAlgorithm.Myers; } /// @@ -47,7 +47,7 @@ public CompareOptions() /// /// Algorithm to be used when performing a Diff. - /// By default, will be used. + /// By default, will be used. /// public DiffAlgorithm Algorithm { get; set; } } diff --git a/LibGit2Sharp/DiffAlgorithm.cs b/LibGit2Sharp/DiffAlgorithm.cs index 9e89e68e6..c51ca0021 100644 --- a/LibGit2Sharp/DiffAlgorithm.cs +++ b/LibGit2Sharp/DiffAlgorithm.cs @@ -8,7 +8,7 @@ public enum DiffAlgorithm /// /// The basic greedy diff algorithm. /// - Meyers = 0, + Myers = 0, /// /// Use "patience diff" algorithm when generating patches.