mirror of
https://github.com/dlang/phobos.git
synced 2025-05-05 09:30:49 +03:00
Removed the accidental semicolon
This commit is contained in:
parent
4beda7da9c
commit
0a7d2c9b10
1 changed files with 1 additions and 1 deletions
|
@ -7605,7 +7605,7 @@ struct Levenshtein(Range, alias equals, CostType = size_t)
|
|||
{
|
||||
auto slen = walkLength(s.save), tlen = walkLength(t.save);
|
||||
AllocMatrix(slen + 1, tlen + 1);
|
||||
foreach (i; 1 .. rows);
|
||||
foreach (i; 1 .. rows)
|
||||
{
|
||||
auto sfront = s.front;
|
||||
s.popFront();
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue