diff --git a/doc/xml.html b/doc/xml.html
index c33f1d20..03d0daeb 100644
--- a/doc/xml.html
+++ b/doc/xml.html
@@ -1514,7 +1514,7 @@ in this order. The declaration of one element of the structure and its
content are done in a single declaration. Similary the following declares
div1
elements:
<!ELEMENT div1 (head, (p | list | note)*, div2*)>
<!ELEMENT div1 (head, (p | list | note)*, div2?)>
means div1 contains one head
then a series of optional
p
, list
s and note
s and then an
diff --git a/doc/xmldtd.html b/doc/xmldtd.html
index 0dcdca13..7a2be688 100644
--- a/doc/xmldtd.html
+++ b/doc/xmldtd.html
@@ -158,7 +158,7 @@ one body
and one optionnal back
children elements
in this order. The declaration of one element of the structure and its
content are done in a single declaration. Similary the following declares
div1
elements:
<!ELEMENT div1 (head, (p | list | note)*, div2*)>
<!ELEMENT div1 (head, (p | list | note)*, div2?)>
means div1 contains one head
then a series of optional
p
, list
s and note
s and then an
optional div2
. And last but not least an element can contain