diff options
author | PJ Fanning <fanningpj@apache.org> | 2023-06-27 19:37:48 +0000 |
---|---|---|
committer | PJ Fanning <fanningpj@apache.org> | 2023-06-27 19:37:48 +0000 |
commit | f331d08c228538a48c1aa9f00f63af2f1daee91d (patch) | |
tree | edf5d3b77ce42c5ab493ca77d0e51ef1c6672505 /poi-ooxml/src/main | |
parent | b90935055dbbaeaac6b3f84df228d354a6fc55a8 (diff) | |
download | poi-f331d08c228538a48c1aa9f00f63af2f1daee91d.tar.gz poi-f331d08c228538a48c1aa9f00f63af2f1daee91d.zip |
apply some spelling fixes
git-svn-id: https://svn.apache.org/repos/asf/poi/trunk@1910640 13f79535-47bb-0310-9956-ffa450edef68
Diffstat (limited to 'poi-ooxml/src/main')
15 files changed, 19 insertions, 19 deletions
diff --git a/poi-ooxml/src/main/java/org/apache/poi/xssf/streaming/SXSSFPicture.java b/poi-ooxml/src/main/java/org/apache/poi/xssf/streaming/SXSSFPicture.java index 329125fc28..7f39c1b1cd 100644 --- a/poi-ooxml/src/main/java/org/apache/poi/xssf/streaming/SXSSFPicture.java +++ b/poi-ooxml/src/main/java/org/apache/poi/xssf/streaming/SXSSFPicture.java @@ -85,7 +85,7 @@ public final class SXSSFPicture implements Picture { * <p> * Please note, that this method works correctly only for workbooks * with the default font size (Calibri 11pt for .xlsx). - * If the default font is changed the resized image can be streched vertically or horizontally. + * If the default font is changed the resized image can be stretched vertically or horizontally. * </p> */ @Override @@ -98,7 +98,7 @@ public final class SXSSFPicture implements Picture { * <p> * Please note, that this method works correctly only for workbooks * with the default font size (Calibri 11pt for .xlsx). - * If the default font is changed the resized image can be streched vertically or horizontally. + * If the default font is changed the resized image can be stretched vertically or horizontally. * </p> * * @param scale the amount by which image dimensions are multiplied relative to the original size. diff --git a/poi-ooxml/src/main/java/org/apache/poi/xssf/streaming/SXSSFRow.java b/poi-ooxml/src/main/java/org/apache/poi/xssf/streaming/SXSSFRow.java index f976485556..42f719b52f 100644 --- a/poi-ooxml/src/main/java/org/apache/poi/xssf/streaming/SXSSFRow.java +++ b/poi-ooxml/src/main/java/org/apache/poi/xssf/streaming/SXSSFRow.java @@ -535,11 +535,11 @@ public class SXSSFRow implements Row, Comparable<SXSSFRow> * equal to the row number of the argument <code>SXSSFRow</code> * </li> * <li> - * a value less than <code>0</code> if the row number of this this <code>SXSSFRow</code> is + * a value less than <code>0</code> if the row number of this <code>SXSSFRow</code> is * numerically less than the row number of the argument <code>SXSSFRow</code> * </li> * <li> - * a value greater than <code>0</code> if the row number of this this <code>SXSSFRow</code> is + * a value greater than <code>0</code> if the row number of this <code>SXSSFRow</code> is * numerically greater than the row number of the argument <code>SXSSFRow</code> * </li> * </ul> diff --git a/poi-ooxml/src/main/java/org/apache/poi/xssf/streaming/SXSSFSheet.java b/poi-ooxml/src/main/java/org/apache/poi/xssf/streaming/SXSSFSheet.java index 7d0964126f..ea1c7e1bfb 100644 --- a/poi-ooxml/src/main/java/org/apache/poi/xssf/streaming/SXSSFSheet.java +++ b/poi-ooxml/src/main/java/org/apache/poi/xssf/streaming/SXSSFSheet.java @@ -1145,7 +1145,7 @@ public class SXSSFSheet implements Sheet, OoxmlSheetExtensions { * Breaks occur above the specified row and left of the specified column inclusive. * * For example, {@code sheet.setColumnBreak(2);} breaks the sheet into two parts - * with columns A,B,C in the first and D,E,... in the second. Simuilar, {@code sheet.setRowBreak(2);} + * with columns A,B,C in the first and D,E,... in the second. Similar, {@code sheet.setRowBreak(2);} * breaks the sheet into two parts with first three rows (rownum=1...3) in the first part * and rows starting with rownum=4 in the second. * diff --git a/poi-ooxml/src/main/java/org/apache/poi/xssf/streaming/SXSSFWorkbook.java b/poi-ooxml/src/main/java/org/apache/poi/xssf/streaming/SXSSFWorkbook.java index eccbc02e22..c92579576c 100644 --- a/poi-ooxml/src/main/java/org/apache/poi/xssf/streaming/SXSSFWorkbook.java +++ b/poi-ooxml/src/main/java/org/apache/poi/xssf/streaming/SXSSFWorkbook.java @@ -1360,7 +1360,7 @@ public class SXSSFWorkbook implements Workbook { } /** - * Returns the spreadsheet version (EXCLE2007) of this workbook + * Returns the spreadsheet version (EXCEL2007) of this workbook * * @return EXCEL2007 SpreadsheetVersion enum * @since 3.14 beta 2 diff --git a/poi-ooxml/src/main/java/org/apache/poi/xssf/usermodel/XSSFChartSheet.java b/poi-ooxml/src/main/java/org/apache/poi/xssf/usermodel/XSSFChartSheet.java index aeb7874a6c..b9944a58d9 100644 --- a/poi-ooxml/src/main/java/org/apache/poi/xssf/usermodel/XSSFChartSheet.java +++ b/poi-ooxml/src/main/java/org/apache/poi/xssf/usermodel/XSSFChartSheet.java @@ -56,7 +56,7 @@ public class XSSFChartSheet extends XSSFSheet { @Override protected void read(InputStream is) throws IOException { - //initialize the supeclass with a blank worksheet + //initialize the superclass with a blank worksheet super.read(UnsynchronizedByteArrayInputStream.builder().setByteArray(BLANK_WORKSHEET).get()); try { diff --git a/poi-ooxml/src/main/java/org/apache/poi/xssf/usermodel/XSSFEvenFooter.java b/poi-ooxml/src/main/java/org/apache/poi/xssf/usermodel/XSSFEvenFooter.java index 118fa793aa..ace7fd018a 100644 --- a/poi-ooxml/src/main/java/org/apache/poi/xssf/usermodel/XSSFEvenFooter.java +++ b/poi-ooxml/src/main/java/org/apache/poi/xssf/usermodel/XSSFEvenFooter.java @@ -33,7 +33,7 @@ import org.openxmlformats.schemas.spreadsheetml.x2006.main.CTHeaderFooter; * </p><p> * Creating an even header or footer sets this property by default, so all you need to do to * get an even header or footer to display is to create one. Likewise, if both the even header - * and footer are usnset, then this property is unset, and the odd header and footer are used + * and footer are unset, then this property is unset, and the odd header and footer are used * for even pages. * </p> */ diff --git a/poi-ooxml/src/main/java/org/apache/poi/xssf/usermodel/XSSFEvenHeader.java b/poi-ooxml/src/main/java/org/apache/poi/xssf/usermodel/XSSFEvenHeader.java index 45600cfc9d..87edf9136e 100644 --- a/poi-ooxml/src/main/java/org/apache/poi/xssf/usermodel/XSSFEvenHeader.java +++ b/poi-ooxml/src/main/java/org/apache/poi/xssf/usermodel/XSSFEvenHeader.java @@ -33,7 +33,7 @@ import org.openxmlformats.schemas.spreadsheetml.x2006.main.CTHeaderFooter; * </p><p> * Creating an even header or footer sets this property by default, so all you need to do to * get an even header or footer to display is to create it. Likewise, if both the even header - * and footer are usnset, then this property is unset, and the odd header and footer are used + * and footer are unset, then this property is unset, and the odd header and footer are used * for even pages. * </p> */ diff --git a/poi-ooxml/src/main/java/org/apache/poi/xssf/usermodel/XSSFFirstFooter.java b/poi-ooxml/src/main/java/org/apache/poi/xssf/usermodel/XSSFFirstFooter.java index 6902066b6f..8ef41646c6 100644 --- a/poi-ooxml/src/main/java/org/apache/poi/xssf/usermodel/XSSFFirstFooter.java +++ b/poi-ooxml/src/main/java/org/apache/poi/xssf/usermodel/XSSFFirstFooter.java @@ -32,7 +32,7 @@ import org.openxmlformats.schemas.spreadsheetml.x2006.main.CTHeaderFooter; * </p><p> * Creating a first page header or footer sets this property by default, so all you need to do to * get an first page header or footer to display is to create one. Likewise, if both the first page - * header and footer are usnset, then this property is unset, and the first page header and footer + * header and footer are unset, then this property is unset, and the first page header and footer * are ignored. * </p> */ diff --git a/poi-ooxml/src/main/java/org/apache/poi/xssf/usermodel/XSSFFirstHeader.java b/poi-ooxml/src/main/java/org/apache/poi/xssf/usermodel/XSSFFirstHeader.java index a28a113523..0f964fa92c 100644 --- a/poi-ooxml/src/main/java/org/apache/poi/xssf/usermodel/XSSFFirstHeader.java +++ b/poi-ooxml/src/main/java/org/apache/poi/xssf/usermodel/XSSFFirstHeader.java @@ -31,7 +31,7 @@ import org.openxmlformats.schemas.spreadsheetml.x2006.main.CTHeaderFooter; * <p> * Creating a first page header or footer sets this property by default, so all you need to do to * get an first page header or footer to display is to create one. Likewise, if both the first page - * header and footer are usnset, then this property is unset, and the first page header and footer + * header and footer are unset, then this property is unset, and the first page header and footer * are ignored. */ public class XSSFFirstHeader extends XSSFHeaderFooter implements Header{ diff --git a/poi-ooxml/src/main/java/org/apache/poi/xssf/usermodel/XSSFFontFormatting.java b/poi-ooxml/src/main/java/org/apache/poi/xssf/usermodel/XSSFFontFormatting.java index ec60fdfae3..7a4c01dc66 100644 --- a/poi-ooxml/src/main/java/org/apache/poi/xssf/usermodel/XSSFFontFormatting.java +++ b/poi-ooxml/src/main/java/org/apache/poi/xssf/usermodel/XSSFFontFormatting.java @@ -73,7 +73,7 @@ public class XSSFFontFormatting implements FontFormatting { } /** - * XMLBeans and the XSD make this look like it can have multiple values, but it is maxOccurrs=1. + * XMLBeans and the XSD make this look like it can have multiple values, but it is maxOccurs=1. * Use get*Array(), it is much faster than get*List(). * * @see org.apache.poi.ss.usermodel.FontFormatting#isStruckout() diff --git a/poi-ooxml/src/main/java/org/apache/poi/xssf/usermodel/XSSFPicture.java b/poi-ooxml/src/main/java/org/apache/poi/xssf/usermodel/XSSFPicture.java index 3980a7cb00..9a3c4056f3 100644 --- a/poi-ooxml/src/main/java/org/apache/poi/xssf/usermodel/XSSFPicture.java +++ b/poi-ooxml/src/main/java/org/apache/poi/xssf/usermodel/XSSFPicture.java @@ -161,7 +161,7 @@ public final class XSSFPicture extends XSSFShape implements Picture { * <p> * Please note, that this method works correctly only for workbooks * with the default font size (Calibri 11pt for .xlsx). - * If the default font is changed the resized image can be streched vertically or horizontally. + * If the default font is changed the resized image can be stretched vertically or horizontally. * <p> * {@code resize(1.0,1.0)} keeps the original size,<br> * {@code resize(0.5,0.5)} resize to 50% of the original,<br> diff --git a/poi-ooxml/src/main/java/org/apache/poi/xssf/usermodel/XSSFPivotTable.java b/poi-ooxml/src/main/java/org/apache/poi/xssf/usermodel/XSSFPivotTable.java index f7db5c755d..e96084e97a 100644 --- a/poi-ooxml/src/main/java/org/apache/poi/xssf/usermodel/XSSFPivotTable.java +++ b/poi-ooxml/src/main/java/org/apache/poi/xssf/usermodel/XSSFPivotTable.java @@ -191,7 +191,7 @@ public class XSSFPivotTable extends POIXMLDocumentPart { pivotTableDefinition.setIndent(0); //The pivot version which created the pivot cache set to default value pivotTableDefinition.setCreatedVersion(CREATED_VERSION); - //Minimun version required to update the pivot cache + //Minimum version required to update the pivot cache pivotTableDefinition.setMinRefreshableVersion(MIN_REFRESHABLE_VERSION); //Version of the application which "updated the spreadsheet last" pivotTableDefinition.setUpdatedVersion(UPDATED_VERSION); diff --git a/poi-ooxml/src/main/java/org/apache/poi/xssf/usermodel/XSSFRow.java b/poi-ooxml/src/main/java/org/apache/poi/xssf/usermodel/XSSFRow.java index bceb6cddfa..5144729fa3 100644 --- a/poi-ooxml/src/main/java/org/apache/poi/xssf/usermodel/XSSFRow.java +++ b/poi-ooxml/src/main/java/org/apache/poi/xssf/usermodel/XSSFRow.java @@ -144,11 +144,11 @@ public class XSSFRow implements Row, Comparable<XSSFRow> { * equal to the row number of the argument {@code XSSFRow} * </li> * <li> - * a value less than {@code 0} if the row number of this this {@code XSSFRow} is + * a value less than {@code 0} if the row number of this {@code XSSFRow} is * numerically less than the row number of the argument {@code XSSFRow} * </li> * <li> - * a value greater than {@code 0} if the row number of this this {@code XSSFRow} is + * a value greater than {@code 0} if the row number of this {@code XSSFRow} is * numerically greater than the row number of the argument {@code XSSFRow} * </li> * </ul> diff --git a/poi-ooxml/src/main/java/org/apache/poi/xssf/usermodel/XSSFSheet.java b/poi-ooxml/src/main/java/org/apache/poi/xssf/usermodel/XSSFSheet.java index 73183eae85..6639a28e65 100644 --- a/poi-ooxml/src/main/java/org/apache/poi/xssf/usermodel/XSSFSheet.java +++ b/poi-ooxml/src/main/java/org/apache/poi/xssf/usermodel/XSSFSheet.java @@ -1942,7 +1942,7 @@ public class XSSFSheet extends POIXMLDocumentPart implements Sheet, OoxmlSheetEx * Breaks occur above the specified row and left of the specified column inclusive. * * For example, {@code sheet.setColumnBreak(2);} breaks the sheet into two parts - * with columns A,B,C in the first and D,E,... in the second. Simuilar, {@code sheet.setRowBreak(2);} + * with columns A,B,C in the first and D,E,... in the second. Similar, {@code sheet.setRowBreak(2);} * breaks the sheet into two parts with first three rows (rownum=1...3) in the first part * and rows starting with rownum=4 in the second. * @@ -2181,7 +2181,7 @@ public class XSSFSheet extends POIXMLDocumentPart implements Sheet, OoxmlSheetEx * Breaks occur above the specified row and left of the specified column inclusive. * * For example, {@code sheet.setColumnBreak(2);} breaks the sheet into two parts - * with columns A,B,C in the first and D,E,... in the second. Simuilar, {@code sheet.setRowBreak(2);} + * with columns A,B,C in the first and D,E,... in the second. Similar, {@code sheet.setRowBreak(2);} * breaks the sheet into two parts with first three rows (rownum=1...3) in the first part * and rows starting with rownum=4 in the second. * diff --git a/poi-ooxml/src/main/java/org/apache/poi/xssf/usermodel/XSSFWorkbook.java b/poi-ooxml/src/main/java/org/apache/poi/xssf/usermodel/XSSFWorkbook.java index cc7284e04b..dd4e5ec406 100644 --- a/poi-ooxml/src/main/java/org/apache/poi/xssf/usermodel/XSSFWorkbook.java +++ b/poi-ooxml/src/main/java/org/apache/poi/xssf/usermodel/XSSFWorkbook.java @@ -2416,7 +2416,7 @@ public class XSSFWorkbook extends POIXMLDocument implements Workbook, Date1904Su } /** - * Returns the spreadsheet version (EXCLE2007) of this workbook + * Returns the spreadsheet version (EXCEL2007) of this workbook * * @return EXCEL2007 SpreadsheetVersion enum * @since 3.14 beta 2 |