summaryrefslogtreecommitdiff
path: root/filter/source/xslt
diff options
context:
space:
mode:
authorAndrea Gelmini <andrea.gelmini@gelma.net>2019-08-11 19:56:39 +0200
committerAndrea Gelmini <andrea.gelmini@gelma.net>2019-08-12 21:34:31 +0200
commitb0bcd587fba71c34adb85dc5d1b2417104f02748 (patch)
tree0ce5a0ff5dc31e0d1265c642f3eb31d4137617cb /filter/source/xslt
parente71093c0bc52426647a9d3a41ac0643bbc6cb0c6 (diff)
Fix typos
Change-Id: Id20e239b8a5a2dababe9284dc30d4d155ffecfc5 Reviewed-on: https://gerrit.libreoffice.org/77322 Reviewed-by: Julien Nabet <serval2412@yahoo.fr> Tested-by: Jenkins
Diffstat (limited to 'filter/source/xslt')
-rw-r--r--filter/source/xslt/import/spreadsheetml/adorowset2ods.xsl8
1 files changed, 4 insertions, 4 deletions
diff --git a/filter/source/xslt/import/spreadsheetml/adorowset2ods.xsl b/filter/source/xslt/import/spreadsheetml/adorowset2ods.xsl
index 727dd1df150a..0d36494d27d3 100644
--- a/filter/source/xslt/import/spreadsheetml/adorowset2ods.xsl
+++ b/filter/source/xslt/import/spreadsheetml/adorowset2ods.xsl
@@ -151,7 +151,7 @@
<xsl:otherwise>string</xsl:otherwise>
</xsl:choose>
</xsl:template>
- <!-- An utility to convert a column number (e.g. 27; 1-based) to column name (like AA) -->
+ <!-- A utility to convert a column number (e.g. 27; 1-based) to column name (like AA) -->
<xsl:template name="ColNum2Name">
<xsl:param name="num"/>
<xsl:if test="$num > 0">
@@ -188,7 +188,7 @@
</xsl:choose>
</xsl:if>
</xsl:template>
- <!-- An utility to convert a cell address (e.g. row 2, column 27) to cell name (like AA2) -->
+ <!-- A utility to convert a cell address (e.g. row 2, column 27) to cell name (like AA2) -->
<xsl:template name="CellName">
<xsl:param name="rowNum"/>
<xsl:param name="colNum"/>
@@ -197,7 +197,7 @@
</xsl:call-template>
<xsl:value-of select="$rowNum"/>
</xsl:template>
- <!-- An utility to convert a range given in terms of numbers (e.g. row 1, column 1 to row 2, column 27) to range name (like A1:AA2) -->
+ <!-- A utility to convert a range given in terms of numbers (e.g. row 1, column 1 to row 2, column 27) to range name (like A1:AA2) -->
<xsl:template name="RangeName">
<xsl:param name="rowStartNum"/>
<xsl:param name="colStartNum"/>
@@ -213,4 +213,4 @@
<xsl:with-param name="colNum" select="$colEndNum"/>
</xsl:call-template>
</xsl:template>
-</xsl:stylesheet> \ No newline at end of file
+</xsl:stylesheet>