diff options
author | David Thompson <dthompson2@worcester.edu> | 2023-03-04 13:27:43 -0500 |
---|---|---|
committer | David Thompson <dthompson2@worcester.edu> | 2023-03-04 13:27:43 -0500 |
commit | b00a4889ee5e526488ac7347b743d1c6749a12a9 (patch) | |
tree | bbab1e6123c6e0ed59372314aa4007b05e126e89 | |
parent | 2b198d470364535a772239b868dde152bc26946d (diff) |
Make singular/plural slightly more clear.
-rw-r--r-- | js/garden.js | 2 |
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`); } |