Added a missing semicolon to example script

git-svn-id: https://svn.php.net/repository/phpdoc/en/trunk@53603 c90b9560-bf6c-de11-be94-00142212c4b1
This commit is contained in:
andy 2001-08-06 18:25:50 +00:00
parent adc18e0ce8
commit 6c5129c97b

View file

@ -1,4 +1,4 @@
<!-- $Revision: 1.19 $ -->
<!-- $Revision: 1.20 $ -->
<reference id="ref.domxml">
<title>DOM XML functions</title>
<titleabbrev>DOM XML</titleabbrev>
@ -749,7 +749,7 @@ $root = $doc-&gt;add_root("HTML");
$head = $root-&gt;new_child("HEAD", "");
$head-&gt;new_child("TITLE", "Hier der Titel");
$head-&gt;set_attribute("Language", "ge");
$children = $head-&gt;children()
$children = $head-&gt;children();
?&gt;
</programlisting>
</example>