summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorDavid Thompson <dthompson2@worcester.edu>2023-03-04 13:27:43 -0500
committerDavid Thompson <dthompson2@worcester.edu>2023-03-04 13:27:43 -0500
commitb00a4889ee5e526488ac7347b743d1c6749a12a9 (patch)
treebbab1e6123c6e0ed59372314aa4007b05e126e89
parent2b198d470364535a772239b868dde152bc26946d (diff)
Make singular/plural slightly more clear.
-rw-r--r--js/garden.js2
1 files changed, 1 insertions, 1 deletions
diff --git a/js/garden.js b/js/garden.js
index 406d6e3..18def3b 100644
--- a/js/garden.js
+++ b/js/garden.js
@@ -808,7 +808,7 @@ function viewCropDetails(crop) {
addDetail("Multisow", "No");
}
if(crop.spacing >= 1) {
- addDetail("Spacing", `${crop.spacing} ${crop.multisow > 1 ? "clumps" : "plants"} per square foot`);
+ addDetail("Spacing", `${crop.spacing} ${crop.multisow > 1 ? "clump(s)" : "plant(s)"} per square foot`);
} else {
addDetail("Spacing", `1 per ${Math.floor(1 / crop.spacing)} square feet`);
}