Fixed comment

This commit is contained in:
Luís Jesus
2025-03-26 12:00:26 +00:00
parent 1fbba9b359
commit 44f0856ad4

View File

@@ -60,7 +60,7 @@ const convertObjectToXml = (
xml += convertObjectToXml(value, options, depth + 1);
xml += `${getIndentation(options, depth)}</${keyString}>${newline}`;
// All other types are tre
// All other types are treated the same way
} else {
xml += `${getIndentation(options, depth)}<${keyString}>${escapeXml(
String(value)