mmanela / diffplex

DiffPlex is Netstandard 1.0+ C# library to generate textual diffs.
Apache License 2.0
1.01k stars 185 forks source link

CreateCharacterDiffs output is incorrect #141

Open huigy opened 2 months ago

huigy commented 2 months ago

var differ = new Differ(); var diffResult = differ.CreateCharacterDiffs("12111", "111", false);

Incorrect output: 21 Correct output: 2, 11

mmanela commented 2 months ago

Why do you think that is the correct output?