diff --git a/doc/000058.html b/doc/000058.html
index 38794d0..bb78287 100644
--- a/doc/000058.html
+++ b/doc/000058.html
@@ -32,7 +32,7 @@
ADoc: TNativeXml;
begin
Memo1.Lines.Clear;
- ADoc := TNativeXml.Create;
+ ADoc := TNativeXml.Create(nil);
try
ADoc.LoadFromFile(Edit1.Text);
ADoc.XmlFormat := xfReadable;
@@ -46,4 +46,4 @@
Note that ADoc.XmlFormat := xfReadable will make sure that the document is listed in readable form (with carriage returns and indents).
-