From 17acd100df04d3989202cc678fabe54d46cbf7bc Mon Sep 17 00:00:00 2001 From: Keenan Nemetz Date: Wed, 24 Jan 2024 10:19:17 -0800 Subject: [PATCH] fix typo Co-authored-by: Shahzad Lone --- request/graphql/schema/types/scalars.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/request/graphql/schema/types/scalars.go b/request/graphql/schema/types/scalars.go index 6d70330456..1d944a0f73 100644 --- a/request/graphql/schema/types/scalars.go +++ b/request/graphql/schema/types/scalars.go @@ -65,7 +65,7 @@ var BlobScalarType = graphql.NewScalar(graphql.ScalarConfig{ }, }) -// coerceBlob converts the given value into a valid json string. +// coerceJSON converts the given value into a valid json string. // If the value cannot be converted nil is returned. func coerceJSON(value any) any { switch value := value.(type) {