Author: fanningpj
Date: Tue May 6 20:12:35 2025
New Revision: 1925440
URL: http://svn.apache.org/viewvc?rev=1925440&view=rev
Log:
typos (an)
Modified:
poi/trunk/poi-ooxml/src/main/java/org/apache/poi/ooxml/util/XPathHelper.java
poi/trunk/poi-ooxml/src/main/java/org/apache/poi/xssf/streaming/SXSSFSheet.java
poi/trunk/poi-scratchpad/src/main/java/org/apache/poi/hmef/attribute/MAPIDateAttribute.java
poi/trunk/poi-scratchpad/src/main/java/org/apache/poi/hmef/attribute/MAPIStringAttribute.java
poi/trunk/poi-scratchpad/src/main/java/org/apache/poi/hmef/attribute/TNEFDateAttribute.java
poi/trunk/poi-scratchpad/src/main/java/org/apache/poi/hmef/attribute/TNEFStringAttribute.java
poi/trunk/poi/src/main/java/org/apache/poi/ss/formula/WorkbookEvaluator.java
poi/trunk/poi/src/main/java/org/apache/poi/ss/util/CellReference.java
Modified:
poi/trunk/poi-ooxml/src/main/java/org/apache/poi/ooxml/util/XPathHelper.java
URL:
http://svn.apache.org/viewvc/poi/trunk/poi-ooxml/src/main/java/org/apache/poi/ooxml/util/XPathHelper.java?rev=1925440&r1=1925439&r2=1925440&view=diff
==============================================================================
---
poi/trunk/poi-ooxml/src/main/java/org/apache/poi/ooxml/util/XPathHelper.java
(original)
+++
poi/trunk/poi-ooxml/src/main/java/org/apache/poi/ooxml/util/XPathHelper.java
Tue May 6 20:12:35 2025
@@ -80,8 +80,8 @@ public final class XPathHelper {
* It returns the first element found - the search order is:
* <ul>
* <li>searching for a direct child</li>
- * <li>searching for a AlternateContent.Choice child</li>
- * <li>searching for a AlternateContent.Fallback child</li>
+ * <li>searching for an AlternateContent.Choice child</li>
+ * <li>searching for an AlternateContent.Fallback child</li>
* </ul>
* The factory flag is
* a workaround to process files based on a later edition. But it comes
with the drawback:
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=1925440&r1=1925439&r2=1925440&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 May 6 20:12:35 2025
@@ -1814,7 +1814,7 @@ public class SXSSFSheet implements Sheet
}
/**
- * Remove a Array Formula from this sheet. All cells contained in the
Array Formula range are removed as well
+ * Remove an Array Formula from this sheet. All cells contained in the
Array Formula range are removed as well
*
* @param cell any cell within Array Formula range
* @return the {@link CellRange} of cells affected by this change
Modified:
poi/trunk/poi-scratchpad/src/main/java/org/apache/poi/hmef/attribute/MAPIDateAttribute.java
URL:
http://svn.apache.org/viewvc/poi/trunk/poi-scratchpad/src/main/java/org/apache/poi/hmef/attribute/MAPIDateAttribute.java?rev=1925440&r1=1925439&r2=1925440&view=diff
==============================================================================
---
poi/trunk/poi-scratchpad/src/main/java/org/apache/poi/hmef/attribute/MAPIDateAttribute.java
(original)
+++
poi/trunk/poi-scratchpad/src/main/java/org/apache/poi/hmef/attribute/MAPIDateAttribute.java
Tue May 6 20:12:35 2025
@@ -70,7 +70,7 @@ public final class MAPIDateAttribute ext
}
/**
- * Returns the Date of a Attribute, converting as appropriate
+ * Returns the Date of an Attribute, converting as appropriate
*/
public static Date getAsDate(MAPIAttribute attr) {
if(attr == null) {
Modified:
poi/trunk/poi-scratchpad/src/main/java/org/apache/poi/hmef/attribute/MAPIStringAttribute.java
URL:
http://svn.apache.org/viewvc/poi/trunk/poi-scratchpad/src/main/java/org/apache/poi/hmef/attribute/MAPIStringAttribute.java?rev=1925440&r1=1925439&r2=1925440&view=diff
==============================================================================
---
poi/trunk/poi-scratchpad/src/main/java/org/apache/poi/hmef/attribute/MAPIStringAttribute.java
(original)
+++
poi/trunk/poi-scratchpad/src/main/java/org/apache/poi/hmef/attribute/MAPIStringAttribute.java
Tue May 6 20:12:35 2025
@@ -64,7 +64,7 @@ public final class MAPIStringAttribute e
}
/**
- * Returns the string of a Attribute, converting as appropriate
+ * Returns the string of an Attribute, converting as appropriate
*/
public static String getAsString(MAPIAttribute attr) {
if(attr == null) {
Modified:
poi/trunk/poi-scratchpad/src/main/java/org/apache/poi/hmef/attribute/TNEFDateAttribute.java
URL:
http://svn.apache.org/viewvc/poi/trunk/poi-scratchpad/src/main/java/org/apache/poi/hmef/attribute/TNEFDateAttribute.java?rev=1925440&r1=1925439&r2=1925440&view=diff
==============================================================================
---
poi/trunk/poi-scratchpad/src/main/java/org/apache/poi/hmef/attribute/TNEFDateAttribute.java
(original)
+++
poi/trunk/poi-scratchpad/src/main/java/org/apache/poi/hmef/attribute/TNEFDateAttribute.java
Tue May 6 20:12:35 2025
@@ -85,7 +85,7 @@ public final class TNEFDateAttribute ext
}
/**
- * Returns the Date of a Attribute, converting as appropriate
+ * Returns the Date of an Attribute, converting as appropriate
*/
public static Date getAsDate(TNEFAttribute attr) {
if(attr == null) {
Modified:
poi/trunk/poi-scratchpad/src/main/java/org/apache/poi/hmef/attribute/TNEFStringAttribute.java
URL:
http://svn.apache.org/viewvc/poi/trunk/poi-scratchpad/src/main/java/org/apache/poi/hmef/attribute/TNEFStringAttribute.java?rev=1925440&r1=1925439&r2=1925440&view=diff
==============================================================================
---
poi/trunk/poi-scratchpad/src/main/java/org/apache/poi/hmef/attribute/TNEFStringAttribute.java
(original)
+++
poi/trunk/poi-scratchpad/src/main/java/org/apache/poi/hmef/attribute/TNEFStringAttribute.java
Tue May 6 20:12:35 2025
@@ -68,7 +68,7 @@ public final class TNEFStringAttribute e
}
/**
- * Returns the string of a Attribute, converting as appropriate
+ * Returns the string of an Attribute, converting as appropriate
*/
public static String getAsString(TNEFAttribute attr) {
if(attr == null) {
Modified:
poi/trunk/poi/src/main/java/org/apache/poi/ss/formula/WorkbookEvaluator.java
URL:
http://svn.apache.org/viewvc/poi/trunk/poi/src/main/java/org/apache/poi/ss/formula/WorkbookEvaluator.java?rev=1925440&r1=1925439&r2=1925440&view=diff
==============================================================================
---
poi/trunk/poi/src/main/java/org/apache/poi/ss/formula/WorkbookEvaluator.java
(original)
+++
poi/trunk/poi/src/main/java/org/apache/poi/ss/formula/WorkbookEvaluator.java
Tue May 6 20:12:35 2025
@@ -971,7 +971,7 @@ public final class WorkbookEvaluator {
}
/**
- * Register a ATP function in runtime.
+ * Register an ATP function in runtime.
*
* @param name the function name
* @param func the function to register
Modified: poi/trunk/poi/src/main/java/org/apache/poi/ss/util/CellReference.java
URL:
http://svn.apache.org/viewvc/poi/trunk/poi/src/main/java/org/apache/poi/ss/util/CellReference.java?rev=1925440&r1=1925439&r2=1925440&view=diff
==============================================================================
--- poi/trunk/poi/src/main/java/org/apache/poi/ss/util/CellReference.java
(original)
+++ poi/trunk/poi/src/main/java/org/apache/poi/ss/util/CellReference.java Tue
May 6 20:12:35 2025
@@ -451,7 +451,7 @@ public class CellReference implements Ge
}
/**
- * Takes in a 0-based base-10 column and returns a ALPHA-26
+ * Takes in a 0-based base-10 column and returns an ALPHA-26
* representation.
* eg {@code convertNumToColString(3)} returns {@code "D"}
*/
---------------------------------------------------------------------
To unsubscribe, e-mail: [email protected]
For additional commands, e-mail: [email protected]