Formatting fix

This commit is contained in:
ryuukk 2020-10-14 18:45:46 +02:00 committed by Andrew Kelley
parent 1d97747665
commit 5275280ede

View File

@ -510,7 +510,7 @@ pub fn formatType(
for (value) |one| {
if (i == value.len - 1) {
try format(writer, "{}", .{one});
} else{
} else {
try format(writer, "{}, ", .{one});
}
i += 1;