From c0efdedaa91d7743e739e54c05c24bc30db0d0f2 Mon Sep 17 00:00:00 2001 From: Anthony Wang Date: Mon, 22 Aug 2022 12:10:02 -0500 Subject: [PATCH] Fix typo for JSONUnmarshalerFn description comment --- modules/forgefed/forgefed.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/modules/forgefed/forgefed.go b/modules/forgefed/forgefed.go index a6229a1d56..c645b38bf9 100644 --- a/modules/forgefed/forgefed.go +++ b/modules/forgefed/forgefed.go @@ -29,7 +29,7 @@ func GetItemByType(typ ap.ActivityVocabularyType) (ap.Item, error) { return ap.GetItemByType(typ) } -// JSONUnmarshalerFn is the type of the function that will load the data from a fastjson.Value into an Item +// JSONUnmarshalerFn is the function that will load the data from a fastjson.Value into an Item // that the go-ap/activitypub package doesn't know about. func JSONUnmarshalerFn(typ ap.ActivityVocabularyType, val *fastjson.Value, i ap.Item) error { switch typ {