Author: fanningpj
Date: Tue Jun 27 19:37:48 2023
New Revision: 1910640

URL: http://svn.apache.org/viewvc?rev=1910640&view=rev
Log:
apply some spelling fixes

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

Modified: 
poi/trunk/poi-ooxml/src/main/java/org/apache/poi/xssf/streaming/SXSSFPicture.java
URL: 
http://svn.apache.org/viewvc/poi/trunk/poi-ooxml/src/main/java/org/apache/poi/xssf/streaming/SXSSFPicture.java?rev=1910640&r1=1910639&r2=1910640&view=diff
==============================================================================
--- 
poi/trunk/poi-ooxml/src/main/java/org/apache/poi/xssf/streaming/SXSSFPicture.java
 (original)
+++ 
poi/trunk/poi-ooxml/src/main/java/org/apache/poi/xssf/streaming/SXSSFPicture.java
 Tue Jun 27 19:37:48 2023
@@ -85,7 +85,7 @@ public final class SXSSFPicture implemen
      * <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 implemen
      * <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.

Modified: 
poi/trunk/poi-ooxml/src/main/java/org/apache/poi/xssf/streaming/SXSSFRow.java
URL: 
http://svn.apache.org/viewvc/poi/trunk/poi-ooxml/src/main/java/org/apache/poi/xssf/streaming/SXSSFRow.java?rev=1910640&r1=1910639&r2=1910640&view=diff
==============================================================================
--- 
poi/trunk/poi-ooxml/src/main/java/org/apache/poi/xssf/streaming/SXSSFRow.java 
(original)
+++ 
poi/trunk/poi-ooxml/src/main/java/org/apache/poi/xssf/streaming/SXSSFRow.java 
Tue Jun 27 19:37:48 2023
@@ -535,11 +535,11 @@ public class SXSSFRow implements Row, Co
      *      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>

Modified: 
poi/trunk/poi-ooxml/src/main/java/org/apache/poi/xssf/streaming/SXSSFSheet.java
URL: 
http://svn.apache.org/viewvc/poi/trunk/poi-ooxml/src/main/java/org/apache/poi/xssf/streaming/SXSSFSheet.java?rev=1910640&r1=1910639&r2=1910640&view=diff
==============================================================================
--- 
poi/trunk/poi-ooxml/src/main/java/org/apache/poi/xssf/streaming/SXSSFSheet.java 
(original)
+++ 
poi/trunk/poi-ooxml/src/main/java/org/apache/poi/xssf/streaming/SXSSFSheet.java 
Tue Jun 27 19:37:48 2023
@@ -1145,7 +1145,7 @@ public class SXSSFSheet implements Sheet
      * 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.
      *

Modified: 
poi/trunk/poi-ooxml/src/main/java/org/apache/poi/xssf/streaming/SXSSFWorkbook.java
URL: 
http://svn.apache.org/viewvc/poi/trunk/poi-ooxml/src/main/java/org/apache/poi/xssf/streaming/SXSSFWorkbook.java?rev=1910640&r1=1910639&r2=1910640&view=diff
==============================================================================
--- 
poi/trunk/poi-ooxml/src/main/java/org/apache/poi/xssf/streaming/SXSSFWorkbook.java
 (original)
+++ 
poi/trunk/poi-ooxml/src/main/java/org/apache/poi/xssf/streaming/SXSSFWorkbook.java
 Tue Jun 27 19:37:48 2023
@@ -1360,7 +1360,7 @@ public class SXSSFWorkbook implements Wo
     }
 
     /**
-     * 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

Modified: 
poi/trunk/poi-ooxml/src/main/java/org/apache/poi/xssf/usermodel/XSSFChartSheet.java
URL: 
http://svn.apache.org/viewvc/poi/trunk/poi-ooxml/src/main/java/org/apache/poi/xssf/usermodel/XSSFChartSheet.java?rev=1910640&r1=1910639&r2=1910640&view=diff
==============================================================================
--- 
poi/trunk/poi-ooxml/src/main/java/org/apache/poi/xssf/usermodel/XSSFChartSheet.java
 (original)
+++ 
poi/trunk/poi-ooxml/src/main/java/org/apache/poi/xssf/usermodel/XSSFChartSheet.java
 Tue Jun 27 19:37:48 2023
@@ -56,7 +56,7 @@ public class XSSFChartSheet extends XSSF
 
     @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 {

Modified: 
poi/trunk/poi-ooxml/src/main/java/org/apache/poi/xssf/usermodel/XSSFEvenFooter.java
URL: 
http://svn.apache.org/viewvc/poi/trunk/poi-ooxml/src/main/java/org/apache/poi/xssf/usermodel/XSSFEvenFooter.java?rev=1910640&r1=1910639&r2=1910640&view=diff
==============================================================================
--- 
poi/trunk/poi-ooxml/src/main/java/org/apache/poi/xssf/usermodel/XSSFEvenFooter.java
 (original)
+++ 
poi/trunk/poi-ooxml/src/main/java/org/apache/poi/xssf/usermodel/XSSFEvenFooter.java
 Tue Jun 27 19:37:48 2023
@@ -33,7 +33,7 @@ import org.openxmlformats.schemas.spread
  * </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>
  */

Modified: 
poi/trunk/poi-ooxml/src/main/java/org/apache/poi/xssf/usermodel/XSSFEvenHeader.java
URL: 
http://svn.apache.org/viewvc/poi/trunk/poi-ooxml/src/main/java/org/apache/poi/xssf/usermodel/XSSFEvenHeader.java?rev=1910640&r1=1910639&r2=1910640&view=diff
==============================================================================
--- 
poi/trunk/poi-ooxml/src/main/java/org/apache/poi/xssf/usermodel/XSSFEvenHeader.java
 (original)
+++ 
poi/trunk/poi-ooxml/src/main/java/org/apache/poi/xssf/usermodel/XSSFEvenHeader.java
 Tue Jun 27 19:37:48 2023
@@ -33,7 +33,7 @@ import org.openxmlformats.schemas.spread
  * </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>
  */

Modified: 
poi/trunk/poi-ooxml/src/main/java/org/apache/poi/xssf/usermodel/XSSFFirstFooter.java
URL: 
http://svn.apache.org/viewvc/poi/trunk/poi-ooxml/src/main/java/org/apache/poi/xssf/usermodel/XSSFFirstFooter.java?rev=1910640&r1=1910639&r2=1910640&view=diff
==============================================================================
--- 
poi/trunk/poi-ooxml/src/main/java/org/apache/poi/xssf/usermodel/XSSFFirstFooter.java
 (original)
+++ 
poi/trunk/poi-ooxml/src/main/java/org/apache/poi/xssf/usermodel/XSSFFirstFooter.java
 Tue Jun 27 19:37:48 2023
@@ -32,7 +32,7 @@ import org.openxmlformats.schemas.spread
  * </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>
  */

Modified: 
poi/trunk/poi-ooxml/src/main/java/org/apache/poi/xssf/usermodel/XSSFFirstHeader.java
URL: 
http://svn.apache.org/viewvc/poi/trunk/poi-ooxml/src/main/java/org/apache/poi/xssf/usermodel/XSSFFirstHeader.java?rev=1910640&r1=1910639&r2=1910640&view=diff
==============================================================================
--- 
poi/trunk/poi-ooxml/src/main/java/org/apache/poi/xssf/usermodel/XSSFFirstHeader.java
 (original)
+++ 
poi/trunk/poi-ooxml/src/main/java/org/apache/poi/xssf/usermodel/XSSFFirstHeader.java
 Tue Jun 27 19:37:48 2023
@@ -31,7 +31,7 @@ import org.openxmlformats.schemas.spread
  * <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{

Modified: 
poi/trunk/poi-ooxml/src/main/java/org/apache/poi/xssf/usermodel/XSSFFontFormatting.java
URL: 
http://svn.apache.org/viewvc/poi/trunk/poi-ooxml/src/main/java/org/apache/poi/xssf/usermodel/XSSFFontFormatting.java?rev=1910640&r1=1910639&r2=1910640&view=diff
==============================================================================
--- 
poi/trunk/poi-ooxml/src/main/java/org/apache/poi/xssf/usermodel/XSSFFontFormatting.java
 (original)
+++ 
poi/trunk/poi-ooxml/src/main/java/org/apache/poi/xssf/usermodel/XSSFFontFormatting.java
 Tue Jun 27 19:37:48 2023
@@ -73,7 +73,7 @@ public class XSSFFontFormatting implemen
     }
 
     /**
-     * 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()

Modified: 
poi/trunk/poi-ooxml/src/main/java/org/apache/poi/xssf/usermodel/XSSFPicture.java
URL: 
http://svn.apache.org/viewvc/poi/trunk/poi-ooxml/src/main/java/org/apache/poi/xssf/usermodel/XSSFPicture.java?rev=1910640&r1=1910639&r2=1910640&view=diff
==============================================================================
--- 
poi/trunk/poi-ooxml/src/main/java/org/apache/poi/xssf/usermodel/XSSFPicture.java
 (original)
+++ 
poi/trunk/poi-ooxml/src/main/java/org/apache/poi/xssf/usermodel/XSSFPicture.java
 Tue Jun 27 19:37:48 2023
@@ -161,7 +161,7 @@ public final class XSSFPicture extends X
      * <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>

Modified: 
poi/trunk/poi-ooxml/src/main/java/org/apache/poi/xssf/usermodel/XSSFPivotTable.java
URL: 
http://svn.apache.org/viewvc/poi/trunk/poi-ooxml/src/main/java/org/apache/poi/xssf/usermodel/XSSFPivotTable.java?rev=1910640&r1=1910639&r2=1910640&view=diff
==============================================================================
--- 
poi/trunk/poi-ooxml/src/main/java/org/apache/poi/xssf/usermodel/XSSFPivotTable.java
 (original)
+++ 
poi/trunk/poi-ooxml/src/main/java/org/apache/poi/xssf/usermodel/XSSFPivotTable.java
 Tue Jun 27 19:37:48 2023
@@ -191,7 +191,7 @@ public class XSSFPivotTable extends POIX
         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);

Modified: 
poi/trunk/poi-ooxml/src/main/java/org/apache/poi/xssf/usermodel/XSSFRow.java
URL: 
http://svn.apache.org/viewvc/poi/trunk/poi-ooxml/src/main/java/org/apache/poi/xssf/usermodel/XSSFRow.java?rev=1910640&r1=1910639&r2=1910640&view=diff
==============================================================================
--- 
poi/trunk/poi-ooxml/src/main/java/org/apache/poi/xssf/usermodel/XSSFRow.java 
(original)
+++ 
poi/trunk/poi-ooxml/src/main/java/org/apache/poi/xssf/usermodel/XSSFRow.java 
Tue Jun 27 19:37:48 2023
@@ -144,11 +144,11 @@ public class XSSFRow implements Row, Com
      *      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>

Modified: 
poi/trunk/poi-ooxml/src/main/java/org/apache/poi/xssf/usermodel/XSSFSheet.java
URL: 
http://svn.apache.org/viewvc/poi/trunk/poi-ooxml/src/main/java/org/apache/poi/xssf/usermodel/XSSFSheet.java?rev=1910640&r1=1910639&r2=1910640&view=diff
==============================================================================
--- 
poi/trunk/poi-ooxml/src/main/java/org/apache/poi/xssf/usermodel/XSSFSheet.java 
(original)
+++ 
poi/trunk/poi-ooxml/src/main/java/org/apache/poi/xssf/usermodel/XSSFSheet.java 
Tue Jun 27 19:37:48 2023
@@ -1942,7 +1942,7 @@ public class XSSFSheet extends POIXMLDoc
      * 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 POIXMLDoc
      * 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.
      *

Modified: 
poi/trunk/poi-ooxml/src/main/java/org/apache/poi/xssf/usermodel/XSSFWorkbook.java
URL: 
http://svn.apache.org/viewvc/poi/trunk/poi-ooxml/src/main/java/org/apache/poi/xssf/usermodel/XSSFWorkbook.java?rev=1910640&r1=1910639&r2=1910640&view=diff
==============================================================================
--- 
poi/trunk/poi-ooxml/src/main/java/org/apache/poi/xssf/usermodel/XSSFWorkbook.java
 (original)
+++ 
poi/trunk/poi-ooxml/src/main/java/org/apache/poi/xssf/usermodel/XSSFWorkbook.java
 Tue Jun 27 19:37:48 2023
@@ -2416,7 +2416,7 @@ public class XSSFWorkbook extends POIXML
     }
 
     /**
-     * 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

Modified: poi/trunk/poi/src/main/java/org/apache/poi/ddf/EscherRecord.java
URL: 
http://svn.apache.org/viewvc/poi/trunk/poi/src/main/java/org/apache/poi/ddf/EscherRecord.java?rev=1910640&r1=1910639&r2=1910640&view=diff
==============================================================================
--- poi/trunk/poi/src/main/java/org/apache/poi/ddf/EscherRecord.java (original)
+++ poi/trunk/poi/src/main/java/org/apache/poi/ddf/EscherRecord.java Tue Jun 27 
19:37:48 2023
@@ -131,7 +131,7 @@ public abstract class EscherRecord imple
     }
 
     /**
-     * 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.

Modified: 
poi/trunk/poi/src/main/java/org/apache/poi/hssf/usermodel/HSSFPicture.java
URL: 
http://svn.apache.org/viewvc/poi/trunk/poi/src/main/java/org/apache/poi/hssf/usermodel/HSSFPicture.java?rev=1910640&r1=1910639&r2=1910640&view=diff
==============================================================================
--- poi/trunk/poi/src/main/java/org/apache/poi/hssf/usermodel/HSSFPicture.java 
(original)
+++ poi/trunk/poi/src/main/java/org/apache/poi/hssf/usermodel/HSSFPicture.java 
Tue Jun 27 19:37:48 2023
@@ -91,7 +91,7 @@ public class HSSFPicture extends HSSFSim
      * <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 HSSFSim
      * <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>

Modified: poi/trunk/poi/src/main/java/org/apache/poi/hssf/usermodel/HSSFRow.java
URL: 
http://svn.apache.org/viewvc/poi/trunk/poi/src/main/java/org/apache/poi/hssf/usermodel/HSSFRow.java?rev=1910640&r1=1910639&r2=1910640&view=diff
==============================================================================
--- poi/trunk/poi/src/main/java/org/apache/poi/hssf/usermodel/HSSFRow.java 
(original)
+++ poi/trunk/poi/src/main/java/org/apache/poi/hssf/usermodel/HSSFRow.java Tue 
Jun 27 19:37:48 2023
@@ -688,11 +688,11 @@ public final class HSSFRow implements Ro
      *      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>

Modified: 
poi/trunk/poi/src/main/java/org/apache/poi/hssf/usermodel/HSSFSheet.java
URL: 
http://svn.apache.org/viewvc/poi/trunk/poi/src/main/java/org/apache/poi/hssf/usermodel/HSSFSheet.java?rev=1910640&r1=1910639&r2=1910640&view=diff
==============================================================================
--- poi/trunk/poi/src/main/java/org/apache/poi/hssf/usermodel/HSSFSheet.java 
(original)
+++ poi/trunk/poi/src/main/java/org/apache/poi/hssf/usermodel/HSSFSheet.java 
Tue Jun 27 19:37:48 2023
@@ -1995,7 +1995,7 @@ public final class HSSFSheet implements
      * 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
      * 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.
      *

Modified: 
poi/trunk/poi/src/main/java/org/apache/poi/hssf/usermodel/HSSFWorkbook.java
URL: 
http://svn.apache.org/viewvc/poi/trunk/poi/src/main/java/org/apache/poi/hssf/usermodel/HSSFWorkbook.java?rev=1910640&r1=1910639&r2=1910640&view=diff
==============================================================================
--- poi/trunk/poi/src/main/java/org/apache/poi/hssf/usermodel/HSSFWorkbook.java 
(original)
+++ poi/trunk/poi/src/main/java/org/apache/poi/hssf/usermodel/HSSFWorkbook.java 
Tue Jun 27 19:37:48 2023
@@ -2309,7 +2309,7 @@ public final class HSSFWorkbook extends
     }
 
     /**
-     * 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

Modified: poi/trunk/poi/src/main/java/org/apache/poi/sl/draw/DrawPaint.java
URL: 
http://svn.apache.org/viewvc/poi/trunk/poi/src/main/java/org/apache/poi/sl/draw/DrawPaint.java?rev=1910640&r1=1910639&r2=1910640&view=diff
==============================================================================
--- poi/trunk/poi/src/main/java/org/apache/poi/sl/draw/DrawPaint.java (original)
+++ poi/trunk/poi/src/main/java/org/apache/poi/sl/draw/DrawPaint.java Tue Jun 
27 19:37:48 2023
@@ -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()) {

Modified: poi/trunk/poi/src/main/java/org/apache/poi/ss/usermodel/Picture.java
URL: 
http://svn.apache.org/viewvc/poi/trunk/poi/src/main/java/org/apache/poi/ss/usermodel/Picture.java?rev=1910640&r1=1910639&r2=1910640&view=diff
==============================================================================
--- poi/trunk/poi/src/main/java/org/apache/poi/ss/usermodel/Picture.java 
(original)
+++ poi/trunk/poi/src/main/java/org/apache/poi/ss/usermodel/Picture.java Tue 
Jun 27 19:37:48 2023
@@ -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>



---------------------------------------------------------------------
To unsubscribe, e-mail: [email protected]
For additional commands, e-mail: [email protected]

Reply via email to