diff options
Diffstat (limited to 'js')
-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`); } |