From 44f0856ad481c7357df8c2feb0de9b448f67eae7 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Lu=C3=ADs=20Jesus?= Date: Wed, 26 Mar 2025 12:00:26 +0000 Subject: [PATCH] Fixed comment --- src/pages/tools/json/json-to-xml/service.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/pages/tools/json/json-to-xml/service.ts b/src/pages/tools/json/json-to-xml/service.ts index f5e11df..24b52e7 100644 --- a/src/pages/tools/json/json-to-xml/service.ts +++ b/src/pages/tools/json/json-to-xml/service.ts @@ -60,7 +60,7 @@ const convertObjectToXml = ( xml += convertObjectToXml(value, options, depth + 1); xml += `${getIndentation(options, depth)}${newline}`; - // All other types are tre + // All other types are treated the same way } else { xml += `${getIndentation(options, depth)}<${keyString}>${escapeXml( String(value)