Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions LibGit2Sharp/CompareOptions.cs
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ public CompareOptions()
{
ContextLines = 3;
InterhunkLines = 0;
Algorithm = DiffAlgorithm.Meyers;
Algorithm = DiffAlgorithm.Myers;
}

/// <summary>
Expand Down Expand Up @@ -47,7 +47,7 @@ public CompareOptions()

/// <summary>
/// Algorithm to be used when performing a Diff.
/// By default, <see cref="DiffAlgorithm.Meyers"/> will be used.
/// By default, <see cref="DiffAlgorithm.Myers"/> will be used.
/// </summary>
public DiffAlgorithm Algorithm { get; set; }
}
Expand Down
2 changes: 1 addition & 1 deletion LibGit2Sharp/DiffAlgorithm.cs
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ public enum DiffAlgorithm
/// <summary>
/// The basic greedy diff algorithm.
/// </summary>
Meyers = 0,
Myers = 0,

/// <summary>
/// Use "patience diff" algorithm when generating patches.
Expand Down