Fixed staggered text within report

This commit is contained in:
AJ
2020-07-30 09:40:50 -04:00
parent f5f9427086
commit ba07040318

View File

@@ -94,7 +94,7 @@ namespace CutToLength.Forms
var length = first.Length.ToString().PadLeft(max);
var name = first.Name;
var pcsSingularOrPlural = count == 1 ? "pc" : "pcs";
var pcsSingularOrPlural = count == 1 ? "pc " : "pcs";
writer.WriteLine($" {count}{pcsSingularOrPlural} @ {length}\" LG Tag:{name}");
}