diff options
author | Andrea Gelmini <andrea.gelmini@gelma.net> | 2024-06-29 15:56:05 +0200 |
---|---|---|
committer | Andrea Gelmini <andrea.gelmini@gelma.net> | 2024-06-29 17:22:12 +0200 |
commit | 102cbf4626dc80191a21af53c65f4817a0baef9b (patch) | |
tree | f89cf284607162f3158fda400d44b026f5f40a90 /reportbuilder/java | |
parent | 36d898b3bc635e996cad074fc81341d43a650a3f (diff) |
Fix "lets" -> "let's"
Change-Id: I01968fc18b093dbbc27213f01c3da38ae151c62c
Reviewed-on: https://gerrit.libreoffice.org/c/core/+/169748
Reviewed-by: Andrea Gelmini <andrea.gelmini@gelma.net>
Tested-by: Jenkins
Diffstat (limited to 'reportbuilder/java')
3 files changed, 3 insertions, 3 deletions
diff --git a/reportbuilder/java/org/libreoffice/report/pentaho/output/StyleUtilities.java b/reportbuilder/java/org/libreoffice/report/pentaho/output/StyleUtilities.java index 98af0c3fa076..6e7339171fd9 100644 --- a/reportbuilder/java/org/libreoffice/report/pentaho/output/StyleUtilities.java +++ b/reportbuilder/java/org/libreoffice/report/pentaho/output/StyleUtilities.java @@ -138,7 +138,7 @@ public class StyleUtilities } // There is no automatic style either. Now this means that someone - // messed up the fileformat. Lets create a new empty style for this. + // messed up the fileformat. Let's create a new empty style for this. final OfficeStyle autostyle = new OfficeStyle(); autostyle.setNamespace(OfficeNamespaces.STYLE_NS); autostyle.setType(STYLE); diff --git a/reportbuilder/java/org/libreoffice/report/pentaho/output/spreadsheet/SpreadsheetRawReportTarget.java b/reportbuilder/java/org/libreoffice/report/pentaho/output/spreadsheet/SpreadsheetRawReportTarget.java index b1d979e7b788..4987184ee9bd 100644 --- a/reportbuilder/java/org/libreoffice/report/pentaho/output/spreadsheet/SpreadsheetRawReportTarget.java +++ b/reportbuilder/java/org/libreoffice/report/pentaho/output/spreadsheet/SpreadsheetRawReportTarget.java @@ -374,7 +374,7 @@ public class SpreadsheetRawReportTarget extends OfficeDocumentReportTarget { // a new row means our column counter gets reset columnCounter = 0; - // Lets make sure the color of the table is ok .. + // Let's make sure the color of the table is ok... if (tableBackgroundColor != null) { final String styleName = (String) attrs.getAttribute(OfficeNamespaces.TABLE_NS, OfficeToken.STYLE_NAME); 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 d8e50d2d4991..302e6908914b 100644 --- a/reportbuilder/java/org/libreoffice/report/pentaho/output/text/TextRawReportTarget.java +++ b/reportbuilder/java/org/libreoffice/report/pentaho/output/text/TextRawReportTarget.java @@ -642,7 +642,7 @@ public class TextRawReportTarget extends OfficeDocumentReportTarget if (style == null) { style = deriveStyle(OfficeToken.PARAGRAPH, styleName); - // Lets set the 'keep-together' flag... + // Let's set the 'keep-together' flag... Element paragraphProps = style.getParagraphProperties(); if (paragraphProps == null) |