We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 2a44f34 commit 0a53f64Copy full SHA for 0a53f64
src/dom-parsing/XMLSerializer.ts
@@ -48,7 +48,7 @@ export default class XMLSerializer {
48
export function serializeToWellFormedString(root: Node): string {
49
root = asObject(root, Node);
50
51
- // Produce an XML serialization of root passing a value of false for the require well-formed
+ // Produce an XML serialization of root passing a value of true for the require well-formed
52
// parameter, and return the result.
53
const result: string[] = [];
54
produceXmlSerialization(root, true, result);
0 commit comments