Skip to content

Commit

Permalink
Typo.
Browse files Browse the repository at this point in the history
  • Loading branch information
Jesse Alama committed Jul 5, 2013
1 parent d2b3e9e commit c873246
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion render-tptp.xsl
Expand Up @@ -61,7 +61,7 @@
<xsl:template name="chomp-front">
<xsl:param name="s"/>
<xsl:choose>
<xsl:when test="starts-ith ($s, &quot;\n&quot;)">
<xsl:when test="starts-with ($s, &quot;\n&quot;)">
<xsl:value-of select="substring-after ($s, &quot;
&quot;)"/>
</xsl:when>
Expand Down
2 changes: 1 addition & 1 deletion render-tptp.xsltxt
Expand Up @@ -43,7 +43,7 @@ tpl [comment] {

// if the string starts with a newline, delete it
tpl chomp-front (#s) {
if [starts-ith ($s, "\n")] {
if [starts-with ($s, "\n")] {
`substring-after ($s, "\n")`;
} else {
$s;
Expand Down

0 comments on commit c873246

Please sign in to comment.