summaryrefslogtreecommitdiff
path: root/filter
diff options
context:
space:
mode:
authorAndrea Gelmini <andrea.gelmini@gelma.net>2019-05-14 21:23:49 +0000
committerJulien Nabet <serval2412@yahoo.fr>2019-06-02 12:18:19 +0200
commitcbeeca1237b2cda6bbcefab51b6c62015a280251 (patch)
treeec6aaa4a237672a91a6201aa624817f235ea3495 /filter
parent93477d1a963e38e3319013e43835a8ffef200972 (diff)
Fix typo
Change-Id: Ied4c82e2ad27667eec20bbb072b3649360473841 Reviewed-on: https://gerrit.libreoffice.org/73327 Reviewed-by: Julien Nabet <serval2412@yahoo.fr> Tested-by: Julien Nabet <serval2412@yahoo.fr>
Diffstat (limited to 'filter')
-rw-r--r--filter/source/xslt/export/wordml/ooo2wordml_path.xsl4
1 files changed, 2 insertions, 2 deletions
diff --git a/filter/source/xslt/export/wordml/ooo2wordml_path.xsl b/filter/source/xslt/export/wordml/ooo2wordml_path.xsl
index d07e6d9d2fa5..5eafe99ae9ca 100644
--- a/filter/source/xslt/export/wordml/ooo2wordml_path.xsl
+++ b/filter/source/xslt/export/wordml/ooo2wordml_path.xsl
@@ -623,7 +623,7 @@
</xsl:call-template>
</xsl:when>
<xsl:when test="string-length(translate($curr-char , '+-' ,'') ) = 0 and string-length($number) &gt; 0">
- <!-- finsh it with +/- -->
+ <!-- finish it with +/- -->
<xsl:value-of select="concat( round( concat( $curr-char, $number)) , ':' , $position)"/>
</xsl:when>
<xsl:otherwise>
@@ -643,7 +643,7 @@
<xsl:variable name="curr-char" select="substring($svg-path, $position , 1)"/>
<xsl:choose>
<xsl:when test="string-length(translate($curr-char , 'MmZzLlHhVvCcSsQqTtAa' ,'')) = 0 ">
- <!-- "MmZzLlHhVvCcSsQqTtAa" are all possiable command chars -->
+ <!-- "MmZzLlHhVvCcSsQqTtAa" are all possible command chars -->
<xsl:value-of select="concat( $curr-char , ':' , $position +1)"/>
</xsl:when>
<xsl:when test="string-length(translate($curr-char , '+-.0123456789' ,'')) = 0 ">