File tree 2 files changed +3
-3
lines changed
2 files changed +3
-3
lines changed Original file line number Diff line number Diff line change @@ -14,7 +14,7 @@ public CompareOptions()
14
14
{
15
15
ContextLines = 3 ;
16
16
InterhunkLines = 0 ;
17
- Algorithm = DiffAlgorithm . Meyers ;
17
+ Algorithm = DiffAlgorithm . Myers ;
18
18
}
19
19
20
20
/// <summary>
@@ -47,7 +47,7 @@ public CompareOptions()
47
47
48
48
/// <summary>
49
49
/// Algorithm to be used when performing a Diff.
50
- /// By default, <see cref="DiffAlgorithm.Meyers "/> will be used.
50
+ /// By default, <see cref="DiffAlgorithm.Myers "/> will be used.
51
51
/// </summary>
52
52
public DiffAlgorithm Algorithm { get ; set ; }
53
53
}
Original file line number Diff line number Diff line change @@ -8,7 +8,7 @@ public enum DiffAlgorithm
8
8
/// <summary>
9
9
/// The basic greedy diff algorithm.
10
10
/// </summary>
11
- Meyers = 0 ,
11
+ Myers = 0 ,
12
12
13
13
/// <summary>
14
14
/// Use "patience diff" algorithm when generating patches.
You can’t perform that action at this time.
0 commit comments