Skip to content

Commit cb69a36

Browse files
committedMar 21, 2025·
Fix test
1 parent 94e120e commit cb69a36

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed
 

‎modules/spellout.xsl

+1-1
Original file line numberDiff line numberDiff line change
@@ -157,7 +157,7 @@
157157
<xsl:sequence select="f:en-spell-out($integer-part) ||
158158
(if ($en-special-fractions($fractional-part)) then ' and ' || $en-special-fractions($fractional-part)
159159
else if (string-length($fractional-part) = 1) then ' and ' || f:en-spell-out(xs:integer($fractional-part)) || ' tenths'
160-
else if (string-length($fractional-part) = 2) then ' and ' || f:en-spell-out(xs:integer($fractional-part)) || ' hundrerdths'
160+
else if (string-length($fractional-part) = 2) then ' and ' || f:en-spell-out(xs:integer($fractional-part)) || ' hundredths'
161161
else if (string-length($fractional-part) = 3) then ' and ' || f:en-spell-out(xs:integer($fractional-part)) || ' thousandths'
162162
else ' point ' || f:en-spell-out-digits($fractional-part))"/>
163163
</xsl:function>

0 commit comments

Comments
 (0)
Please sign in to comment.