The following is from the Wikipedia Article on XML Namespaces:
An XML namespace is declared using the reserved XML attribute xmlns or xmlns:prefix, the value of which must be a valid namespace name.
For example, the following declaration maps the "xhtml:" prefix to the XHTML namespace:
xmlns:xhtml="http://www.w3.org/1999/xhtml"
The article implies that the above declaration creates a namespace called "XTHML". How does the URL "http://www.w3.org/1999/xhtml" define something called "XTHML"? The string "XHTML" does not appear in the xml sample. What does "the XHTML namespace" refer to in the above quote? Would the article be more accurate if it said the following?
For example, the following declaration maps the "xhtml:" prefix to the http://www.w3.org/1999/xhtml namespace:
xmlns:xhtml="http://www.w3.org/1999/xhtml"