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)