typos (an)

git-svn-id: https://svn.apache.org/repos/asf/poi/trunk@1925440 13f79535-47bb-0310-9956-ffa450edef68
This commit is contained in:
PJ Fanning 2025-05-06 20:12:35 +00:00
parent eb89c043dc
commit e867e371be
8 changed files with 9 additions and 9 deletions

View File

@ -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:

View File

@ -1814,7 +1814,7 @@ public class SXSSFSheet implements Sheet, OoxmlSheetExtensions {
}
/**
* 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

View File

@ -70,7 +70,7 @@ public final class MAPIDateAttribute extends MAPIAttribute {
}
/**
* 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) {

View File

@ -64,7 +64,7 @@ public final class MAPIStringAttribute extends MAPIAttribute {
}
/**
* 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) {

View File

@ -85,7 +85,7 @@ public final class TNEFDateAttribute extends TNEFAttribute {
}
/**
* 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) {

View File

@ -68,7 +68,7 @@ public final class TNEFStringAttribute extends TNEFAttribute {
}
/**
* 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) {

View File

@ -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

View File

@ -451,7 +451,7 @@ public class CellReference implements GenericRecord {
}
/**
* 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"}
*/