Unlisted bug in levenshteinDistanceAndPath, removed spurious comment

This commit is contained in:
Andrei Alexandrescu 2011-01-12 01:06:28 +00:00
parent 0661020655
commit 461e22c923

View file

@ -4139,7 +4139,6 @@ unittest
//lev.deletionIncrement = 2;
//lev.insertionIncrement = 100;
string a = "Saturday", b = "Sunday";
// @@@BUG@@@
auto p = levenshteinDistanceAndPath(a, b);
assert(cast(string) p[1] == "nrrnsnnn");
}