From 7d2c01e30fe621ebba55a015499dfb8038d92f3a Mon Sep 17 00:00:00 2001
From: Marco Matthies <71844+marcom@users.noreply.github.com>
Date: Thu, 5 Dec 2024 17:07:59 +0100
Subject: [PATCH] Update comment

---
 src/crop/almass.jl | 5 +++--
 1 file changed, 3 insertions(+), 2 deletions(-)

diff --git a/src/crop/almass.jl b/src/crop/almass.jl
index e3472a4..13b5087 100644
--- a/src/crop/almass.jl
+++ b/src/crop/almass.jl
@@ -366,8 +366,9 @@ Parse a CSV file containing the required parameter values for each crop
 """
 function readcropparameters(cropdirectory::String)
     @debug "Reading crop parameters"
-    # TODO: using String as type for last column in cropdata (this is
-    # the sowingdensity column) until the 35/80 entry is resolved
+    # TODO: the last column (sowingdensity) uses `String` as type.
+    # This is because the entry for "peas/beans" has a value of
+    # "35/80" for the sowingdensity.
     cropdata = CSV.File(joinpath(cropdirectory, CROPFILE), missingstring="NA",
                         types=[String,AnnualDate,AnnualDate,AnnualDate,AnnualDate,Float64,String,Float64,Bool,String])
     growthdata = CSV.File(joinpath(cropdirectory, GROWTHFILE), missingstring="NA",
-- 
GitLab