You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
The util.go function FunderName is linked via the template.Func map, but seems to be unused.
There is a reference in template.go to funding.Funder which cannot be found in the code. Since funding.Funder appears right next to funding.AwardNumber and there is an AwardNumber function in util.go right next to the FunderName function, funding.Funder should probably be funding.FunderName in template.go.
The text was updated successfully, but these errors were encountered:
Since funding.Funder appears right next to funding.AwardNumber and there is an AwardNumber function in util.go right next to the FunderName function, funding.Funder should probably be funding.FunderName in template.go.
AwardNumber is also a field of the FundingReference. The AwardNumber() function, like the Funder() function is also old and unused and should probably be deleted.
The Funder string could be renamed to FunderName in libgin for clarity. It would probably be better since the field name in the XML is actually funderName as well.
The util.go function
FunderName
is linked via thetemplate.Func
map, but seems to be unused.There is a reference in
template.go
tofunding.Funder
which cannot be found in the code. Sincefunding.Funder
appears right next tofunding.AwardNumber
and there is anAwardNumber
function in util.go right next to theFunderName
function,funding.Funder
should probably befunding.FunderName
intemplate.go
.The text was updated successfully, but these errors were encountered: