mirror of
https://github.com/Ellpeck/MLEM.git
synced 2024-11-22 20:58:34 +01:00
fixed split strings having a trailing space
This commit is contained in:
parent
df418c2087
commit
9dfb6134bb
1 changed files with 1 additions and 1 deletions
|
@ -61,7 +61,7 @@ namespace MLEM.Extensions {
|
|||
}
|
||||
total.Append(curr).Append('\n');
|
||||
}
|
||||
return total.ToString(0, total.Length - 1);
|
||||
return total.ToString(0, total.Length - 2);
|
||||
}
|
||||
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue