Skip to content

Commit

Permalink
Fixed return type problem
Browse files Browse the repository at this point in the history
  • Loading branch information
kosek committed Jun 19, 2012
1 parent 67c9e46 commit 929bf17
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion xslt/base/preprocess/4-normalize.xsl
Expand Up @@ -28,7 +28,9 @@

<xsl:function name="f:normalize" as="document-node()">
<xsl:param name="root" as="document-node()"/>
<xsl:apply-templates select="$root" mode="m:normalize"/>
<xsl:document>
<xsl:apply-templates select="$root" mode="m:normalize"/>
</xsl:document>
</xsl:function>

<!-- ============================================================ -->
Expand Down

0 comments on commit 929bf17

Please sign in to comment.