mirror of
https://github.com/sigmasternchen/php-doc-en
synced 2025-03-16 00:48:54 +00:00
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:
parent
adc18e0ce8
commit
6c5129c97b
1 changed files with 2 additions and 2 deletions
|
@ -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->add_root("HTML");
|
|||
$head = $root->new_child("HEAD", "");
|
||||
$head->new_child("TITLE", "Hier der Titel");
|
||||
$head->set_attribute("Language", "ge");
|
||||
$children = $head->children()
|
||||
$children = $head->children();
|
||||
?>
|
||||
</programlisting>
|
||||
</example>
|
||||
|
|
Loading…
Reference in a new issue