Skip to content

Commit

Permalink
Fix syntax bug in generated eix files
Browse files Browse the repository at this point in the history
  • Loading branch information
lthor committed Nov 18, 2011
1 parent 9d934ca commit 00890a4
Showing 1 changed file with 6 additions and 2 deletions.
8 changes: 6 additions & 2 deletions lib/erl_docgen/priv/xsl/db_eix.xsl
Original file line number Diff line number Diff line change
Expand Up @@ -106,10 +106,14 @@
<xsl:choose>
<!-- @arity is mandatory when referring to a specification -->
<xsl:when test="string-length(@arity) > 0">
<xsl:call-template name="spec_name"/>
<xsl:call-template name="spec_name">
<xsl:with-param name="lastfuncsblock" select="$lastfuncsblock"/>
</xsl:call-template>
</xsl:when>
<xsl:otherwise>
<xsl:call-template name="name"/>
<xsl:call-template name="name">
<xsl:with-param name="lastfuncsblock" select="$lastfuncsblock"/>
</xsl:call-template>
</xsl:otherwise>
</xsl:choose>
</xsl:template>
Expand Down

0 comments on commit 00890a4

Please sign in to comment.