]> source.dussan.org Git - poi.git/commitdiff
apply some spelling fixes
authorPJ Fanning <fanningpj@apache.org>
Tue, 27 Jun 2023 19:37:48 +0000 (19:37 +0000)
committerPJ Fanning <fanningpj@apache.org>
Tue, 27 Jun 2023 19:37:48 +0000 (19:37 +0000)
git-svn-id: https://svn.apache.org/repos/asf/poi/trunk@1910640 13f79535-47bb-0310-9956-ffa450edef68

22 files changed:
poi-ooxml/src/main/java/org/apache/poi/xssf/streaming/SXSSFPicture.java
poi-ooxml/src/main/java/org/apache/poi/xssf/streaming/SXSSFRow.java
poi-ooxml/src/main/java/org/apache/poi/xssf/streaming/SXSSFSheet.java
poi-ooxml/src/main/java/org/apache/poi/xssf/streaming/SXSSFWorkbook.java
poi-ooxml/src/main/java/org/apache/poi/xssf/usermodel/XSSFChartSheet.java
poi-ooxml/src/main/java/org/apache/poi/xssf/usermodel/XSSFEvenFooter.java
poi-ooxml/src/main/java/org/apache/poi/xssf/usermodel/XSSFEvenHeader.java
poi-ooxml/src/main/java/org/apache/poi/xssf/usermodel/XSSFFirstFooter.java
poi-ooxml/src/main/java/org/apache/poi/xssf/usermodel/XSSFFirstHeader.java
poi-ooxml/src/main/java/org/apache/poi/xssf/usermodel/XSSFFontFormatting.java
poi-ooxml/src/main/java/org/apache/poi/xssf/usermodel/XSSFPicture.java
poi-ooxml/src/main/java/org/apache/poi/xssf/usermodel/XSSFPivotTable.java
poi-ooxml/src/main/java/org/apache/poi/xssf/usermodel/XSSFRow.java
poi-ooxml/src/main/java/org/apache/poi/xssf/usermodel/XSSFSheet.java
poi-ooxml/src/main/java/org/apache/poi/xssf/usermodel/XSSFWorkbook.java
poi/src/main/java/org/apache/poi/ddf/EscherRecord.java
poi/src/main/java/org/apache/poi/hssf/usermodel/HSSFPicture.java
poi/src/main/java/org/apache/poi/hssf/usermodel/HSSFRow.java
poi/src/main/java/org/apache/poi/hssf/usermodel/HSSFSheet.java
poi/src/main/java/org/apache/poi/hssf/usermodel/HSSFWorkbook.java
poi/src/main/java/org/apache/poi/sl/draw/DrawPaint.java
poi/src/main/java/org/apache/poi/ss/usermodel/Picture.java

index 329125fc2878491ee8f3c24112cc0df3b7c80f09..7f39c1b1cdcca6655f6a5ef51139719e6177bd60 100644 (file)
@@ -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.
index f976485556bc4f9d99ca66e54649868d8e1e48ae..42f719b52f7ef4d114e4a77aaebae244118a44e2 100644 (file)
@@ -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>
index 7d0964126f88b67861778904edcb3bfec5d6ee0b..ea1c7e1bfb592503c5290159bd5833ba9c94203c 100644 (file)
@@ -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.
      *
index eccbc02e225fcc9918ff5c8a9c157b2cb418edf8..c92579576c99c172dcfd0c5b5277e510aed9159b 100644 (file)
@@ -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
index aeb7874a6c3929cdf4a8296675bf9c6c4ce07d30..b9944a58d94632f3dc2c8e75605f8ed8016364bc 100644 (file)
@@ -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 {
index 118fa793aa615cb10987e4fe72c889b2310fb338..ace7fd018ae8841b309e69024b8bdd60c8c3fed2 100644 (file)
@@ -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>
  */
index 45600cfc9d2bf1aa936dfad2108f6f23643d173f..87edf9136eb982b121a320dac06b4c091d9548eb 100644 (file)
@@ -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>
  */
index 6902066b6fc8cdb16d90e241dd9d1bdf98be665a..8ef41646c625bbaf42dbd273026781019d6752af 100644 (file)
@@ -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>
  */
index a28a113523c3e52ceaadaf49054b854ae0136850..0f964fa92ceea55d138add13d6e1acc15059ba25 100644 (file)
@@ -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{
index ec60fdfae3e56c52053e3b7f671a8d9fd246c311..7a4c01dc6646f0f176b5d7ebcd9465cc48f98aee 100644 (file)
@@ -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()
index 3980a7cb0012f5878af874c4461f657d8ae2ad35..9a3c4056f34bf1366cd1db4960b8c98d566fb207 100644 (file)
@@ -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>
index f7db5c755d13eaf649f59dc4e4e2267f6841dbc0..e96084e97a56896c8bf867156ea3f69abd4801bd 100644 (file)
@@ -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);
index bceb6cddfa345a0d841efaadd9a58ac94065aca0..5144729fa3b9502426b3378f60c7e40840b99641 100644 (file)
@@ -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>
index 73183eae856eb4066ef06993e8f1fb909db3fe28..6639a28e658a75290b770f4de575bacbadf71ccc 100644 (file)
@@ -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.
      *
index cc7284e04b01073ce277d940766ed892c999112e..dd4e5ec4069d8707628f995144af3c4b5c099ba7 100644 (file)
@@ -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
index eec8d49046225727189ff8c47a0f48cdb54ae780..c817e7d06032fc6ab18918b43923e166bf322507 100644 (file)
@@ -131,7 +131,7 @@ public abstract class EscherRecord implements Duplicatable, GenericRecord {
     }
 
     /**
-     * Set the options this this record. Container records should have the
+     * Set the options this record. Container records should have the
      * last nibble set to 0xF.<p>
      *
      * Note that {@code options} is an internal field.
index ccc8eef44e744754d293078fd84e4dd077259b62..d232c9bd2cd1dd7aef76b161ac9d303db57dee96 100644 (file)
@@ -91,7 +91,7 @@ public class HSSFPicture extends HSSFSimpleShape implements Picture {
      * <p>
      * Please note, that this method works correctly only for workbooks
      * with default font size (Arial 10pt for .xls).
-     * 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
@@ -114,7 +114,7 @@ public class HSSFPicture extends HSSFSimpleShape implements Picture {
      * <p>
      * Please note, that this method works correctly only for workbooks
      * with default font size (Arial 10pt for .xls).
-     * 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>
      * <p>
      * <code>resize(1.0,1.0)</code> keeps the original size,<br>
index a64840eed2d02efd030df0825b4626961ebefbea..c0b7188409d3c8a3bf36afc284c464e9adca1bdb 100644 (file)
@@ -688,11 +688,11 @@ public final class HSSFRow implements Row, Comparable<HSSFRow> {
      *      equal to the row number of the argument <code>HSSFRow</code>
      *      </li>
      *      <li>
-     *      a value less than <code>0</code> if the row number of this this <code>HSSFRow</code> is
+     *      a value less than <code>0</code> if the row number of this <code>HSSFRow</code> is
      *      numerically less than the row number of the argument <code>HSSFRow</code>
      *      </li>
      *      <li>
-     *      a value greater than <code>0</code> if the row number of this this <code>HSSFRow</code> is
+     *      a value greater than <code>0</code> if the row number of this <code>HSSFRow</code> is
      *      numerically greater than the row number of the argument <code>HSSFRow</code>
      *      </li>
      *      </ul>
index f50e18edb905abc7e637268535fbd88ad79e9d22..b263001450ac2012b53f0e8adc50c20b1e58154d 100644 (file)
@@ -1995,7 +1995,7 @@ public final class HSSFSheet implements Sheet {
      * Breaks occur above the specified row and left of the specified column inclusive.<p>
      *
      * For example, <code>sheet.setColumnBreak(2);</code> 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);</code>
+     * with columns A,B,C in the first and D,E,... in the second. Similar, <code>sheet.setRowBreak(2);</code>
      * 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.
      *
@@ -2047,7 +2047,7 @@ public final class HSSFSheet implements Sheet {
      * Breaks occur above the specified row and left of the specified column inclusive.<p>
      *
      * For example, <code>sheet.setColumnBreak(2);</code> 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.
      *
index aac44b1542b263f6507df27ce82de0bc26982cbf..6c4c84b56e29e4b0e2662ce3962efa93f6dd78af 100644 (file)
@@ -2309,7 +2309,7 @@ public final class HSSFWorkbook extends POIDocument implements Workbook {
     }
 
     /**
-     * Returns the spreadsheet version (EXCLE97) of this workbook
+     * Returns the spreadsheet version (EXCEL97) of this workbook
      *
      * @return EXCEL97 SpreadsheetVersion enum
      * @since 3.14 beta 2
index aa2a27fb0ad44f5208352a82ba02f3ad8040d3ed..ffff09db2f4fa4869cdc87ae8e6fea2ef9a2b1eb 100644 (file)
@@ -264,7 +264,7 @@ public class DrawPaint {
 
         ImageRenderer renderer = DrawPictureShape.getImageRenderer(graphics, contentType);
 
-        // TODO: handle tile settings, currently the pattern is always streched 100% in height/width
+        // TODO: handle tile settings, currently the pattern is always stretched 100% in height/width
         Rectangle2D textAnchor = shape.getAnchor();
 
         try (InputStream is = fill.getImageData()) {
index ac7d33dd2123ce1f736a9fa75b42db4540ea13b6..4b0ffa08c895f65aa6411cb7fec6f9e6a22ca5e8 100644 (file)
@@ -43,7 +43,7 @@ public interface Picture extends Shape {
      * <p>
      * Please note, that this method works correctly only for workbooks
      * with the default font size (Arial 10pt for .xls and 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>
      * <p>
      * <code>resize(1.0,1.0)</code> keeps the original size,<br>