diff --git a/docs/examples/working-with-wildcards.rst b/docs/examples/working-with-wildcards.rst index ac3c7584a..8d9737b52 100644 --- a/docs/examples/working-with-wildcards.rst +++ b/docs/examples/working-with-wildcards.rst @@ -73,8 +73,9 @@ to generate any custom xml element. ... children=[ ... AnyElement(qname="first", text="1st", attributes={"a": "1"}), ... AnyElement(qname="second", text="2nd", attributes={"b": "2"}), + ... AnyElement(qname="{http://xsdata}third", text="2nd", attributes={"b": "2"}), ... DerivedElement( - ... qname="third", + ... qname="fourth", ... value=MetadataType(other_attributes={"c": "3"}) ... ) ... ] @@ -88,7 +89,8 @@ to generate any custom xml element. 1st 2nd - + 2nd +