summaryrefslogtreecommitdiff
path: root/filter/source/xslt
diff options
context:
space:
mode:
authorAndrea Gelmini <andrea.gelmini@gelma.net>2019-09-10 10:37:56 +0200
committerJulien Nabet <serval2412@yahoo.fr>2019-09-10 11:58:13 +0200
commit17f9aa97f8753b895db30e8080481f5f6d696b82 (patch)
tree42be86b7172cecb7986e13ce53c905c4a563894a /filter/source/xslt
parentfce010450534e6992345f5df7b9d9665befb7c6e (diff)
Fix typos
Change-Id: I4671d0f13e67b1272fd7c24bb6a2a7679c75f20b Reviewed-on: https://gerrit.libreoffice.org/78797 Tested-by: Jenkins Reviewed-by: Julien Nabet <serval2412@yahoo.fr>
Diffstat (limited to 'filter/source/xslt')
-rw-r--r--filter/source/xslt/common/math.xsl6
1 files changed, 3 insertions, 3 deletions
diff --git a/filter/source/xslt/common/math.xsl b/filter/source/xslt/common/math.xsl
index 95d4c9c7d00e..6b0dafc1f5c2 100644
--- a/filter/source/xslt/common/math.xsl
+++ b/filter/source/xslt/common/math.xsl
@@ -206,7 +206,7 @@ Public Functions
</xsl:variable>
<xsl:choose>
<xsl:when test="$abs-x &gt; 1">
- <xsl:message>acos error : abs(<xsl:value-of select="$x"/>) greater then 1 !</xsl:message>
+ <xsl:message>acos error : abs(<xsl:value-of select="$x"/>) greater than 1 !</xsl:message>
</xsl:when>
<xsl:otherwise>
<xsl:call-template name="atan2">
@@ -231,7 +231,7 @@ Public Functions
</xsl:variable>
<xsl:choose>
<xsl:when test="$abs-x &gt; 1">
- <xsl:message>asin error : abs(<xsl:value-of select="$x"/>) greater then 1 !</xsl:message>
+ <xsl:message>asin error : abs(<xsl:value-of select="$x"/>) greater than 1 !</xsl:message>
</xsl:when>
<xsl:otherwise>
<xsl:call-template name="atan2">
@@ -307,7 +307,7 @@ Public Functions
<xsl:choose>
<xsl:when test="$x = 0">0</xsl:when>
<xsl:when test="$x &lt; 0">
- <xsl:message>sqrt error : <xsl:value-of select="$x"/> less then 0!</xsl:message>
+ <xsl:message>sqrt error : <xsl:value-of select="$x"/> less than 0!</xsl:message>
</xsl:when>
<xsl:otherwise>
<xsl:call-template name="sqrt-private">