1
0
Fork 0
mirror of https://github.com/Ellpeck/MLEM.git synced 2024-06-08 15:51:35 +02:00

fixed split strings having a trailing space

This commit is contained in:
Ellpeck 2020-03-19 03:50:01 +01:00
parent df418c2087
commit 9dfb6134bb

View file

@ -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);
}
}