Fix stupid typo

[SVN r20777]
This commit is contained in:
Douglas Gregor 2003-11-10 16:12:54 +00:00
parent 6dacc29300
commit 701f383881

View File

@ -138,12 +138,14 @@
<xsl:template match="libraryname" mode="annotation">
<xsl:variable name="name">
<xsl:when test="@alt">
<xsl:value-of select="@alt"/>
</xsl:when>
<xsl:otherwise>
<xsl:value-of select="text()"/>
</xsl:otherwise>
<xsl:choose>
<xsl:when test="@alt">
<xsl:value-of select="@alt"/>
</xsl:when>
<xsl:otherwise>
<xsl:value-of select="text()"/>
</xsl:otherwise>
</xsl:choose>
</xsl:variable>
<xsl:variable name="node" select="key('libraries', $name)"/>