From 77d1ceef72b0033652688baf6f186a9d6fdd6d97 Mon Sep 17 00:00:00 2001 From: Samuel Poulton Date: Wed, 26 Jun 2024 14:05:38 -0600 Subject: [PATCH] update comment for clarity. --- src/steps/cmdb/converters.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/steps/cmdb/converters.ts b/src/steps/cmdb/converters.ts index ff83d3c..abc16c9 100644 --- a/src/steps/cmdb/converters.ts +++ b/src/steps/cmdb/converters.ts @@ -25,7 +25,7 @@ export function createCMDBEntity( let finalValue = value; if (typeof value == 'object') { - // Only stringify if value is an object to avoid double quotes around values. + // Only stringify if value is an object to avoid double quotes around primitive values. finalValue = JSON.stringify(value); } else { finalValue = value;