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:template match="libraryname" mode="annotation">
<xsl:variable name="name"> <xsl:variable name="name">
<xsl:when test="@alt"> <xsl:choose>
<xsl:value-of select="@alt"/> <xsl:when test="@alt">
</xsl:when> <xsl:value-of select="@alt"/>
<xsl:otherwise> </xsl:when>
<xsl:value-of select="text()"/> <xsl:otherwise>
</xsl:otherwise> <xsl:value-of select="text()"/>
</xsl:otherwise>
</xsl:choose>
</xsl:variable> </xsl:variable>
<xsl:variable name="node" select="key('libraries', $name)"/> <xsl:variable name="node" select="key('libraries', $name)"/>