summaryrefslogtreecommitdiff
path: root/reportbuilder
diff options
context:
space:
mode:
authorAndrea Gelmini <andrea.gelmini@gelma.net>2018-08-15 14:19:08 +0200
committerJens Carl <j.carl43@gmx.de>2018-08-15 19:04:41 +0200
commit76532719505a3d9b495911ce7f86b8cda8412a00 (patch)
treebc6cd8b59cf136c5c521aa8dea9e3c5d1865f8fe /reportbuilder
parent9aee1dd5c7a4799fa02f0f64e6f733029c47a21a (diff)
Fix typo: s/an other/another/g
Change-Id: Iab3302d20fb9b0be4b97331709f83f818a46b2da Reviewed-on: https://gerrit.libreoffice.org/59100 Tested-by: Jenkins Reviewed-by: Jens Carl <j.carl43@gmx.de>
Diffstat (limited to 'reportbuilder')
-rw-r--r--reportbuilder/java/org/libreoffice/report/pentaho/output/OfficeDocumentReportTarget.java2
-rw-r--r--reportbuilder/java/org/libreoffice/report/pentaho/output/text/TextRawReportTarget.java2
2 files changed, 2 insertions, 2 deletions
diff --git a/reportbuilder/java/org/libreoffice/report/pentaho/output/OfficeDocumentReportTarget.java b/reportbuilder/java/org/libreoffice/report/pentaho/output/OfficeDocumentReportTarget.java
index 3f23ab3b4f63..0a3f23c6986e 100644
--- a/reportbuilder/java/org/libreoffice/report/pentaho/output/OfficeDocumentReportTarget.java
+++ b/reportbuilder/java/org/libreoffice/report/pentaho/output/OfficeDocumentReportTarget.java
@@ -614,7 +614,7 @@ public abstract class OfficeDocumentReportTarget extends AbstractReportTarget
}
case OfficeDocumentReportTarget.STATE_IN_GROUP_BODY:
{
- // We now expect either an other group or a detail band.
+ // We now expect either another group or a detail band.
if (ReportTargetUtil.isElementOfType(OfficeNamespaces.OOREPORT_NS, "group", attrs))
{
diff --git a/reportbuilder/java/org/libreoffice/report/pentaho/output/text/TextRawReportTarget.java b/reportbuilder/java/org/libreoffice/report/pentaho/output/text/TextRawReportTarget.java
index 469e5ef48268..96add59a59b6 100644
--- a/reportbuilder/java/org/libreoffice/report/pentaho/output/text/TextRawReportTarget.java
+++ b/reportbuilder/java/org/libreoffice/report/pentaho/output/text/TextRawReportTarget.java
@@ -99,7 +99,7 @@ public class TextRawReportTarget extends OfficeDocumentReportTarget
private static final int DETAIL_SECTION_FIRST_STARTED = 1;
// The first detail section has been printed.
private static final int DETAIL_SECTION_FIRST_PRINTED = 2;
- // An other detail section has started
+ // Another detail section has started
private static final int DETAIL_SECTION_OTHER_STARTED = 3;
// The other detail section has been printed.
private static final int DETAIL_SECTION_OTHER_PRINTED = 4;