This is an archived snapshot of W3C's public bugzilla bug tracker, decommissioned in April 2019. Please see the home page for more details.
In the XSLT implementation example of section D.1.1 eg:if-empty, there is the following line: <xsl:param name="node()" type="node()?"/> I think this should be: <xsl:param name="node" type="node()?"/> ~Grauw
Thanks for pointing it out. Actually there's another error: it should be <xsl:param name="node" as="node()?"/> All the XSLT examples in this section should use "as" instead of "type" as the attribute name on xsl:param. Michael Kay
Fixed both the typo pointed out by Grauw and the typo pointed out by Michael Kay. Ashok Malhotra
Closing bug because commenter has not objected to the resolution posted and more than two weeks have passed.