aboutsummaryrefslogtreecommitdiffstats
path: root/poi
diff options
context:
space:
mode:
authorPJ Fanning <fanningpj@apache.org>2022-07-20 10:45:04 +0000
committerPJ Fanning <fanningpj@apache.org>2022-07-20 10:45:04 +0000
commit48e9d6a6d5df5965d345d61b1f28dbff1dfaf6d7 (patch)
tree75ba0b4de6771ea2dd44ae6576f53be80881a97f /poi
parent3cb2c1177a7e2a9940d2dd3295e2f22666aa26b5 (diff)
downloadpoi-48e9d6a6d5df5965d345d61b1f28dbff1dfaf6d7.tar.gz
poi-48e9d6a6d5df5965d345d61b1f28dbff1dfaf6d7.zip
javadoc
git-svn-id: https://svn.apache.org/repos/asf/poi/trunk@1902872 13f79535-47bb-0310-9956-ffa450edef68
Diffstat (limited to 'poi')
-rw-r--r--poi/src/main/java/org/apache/poi/hssf/model/InternalSheet.java4
-rw-r--r--poi/src/main/java/org/apache/poi/hssf/record/HCenterRecord.java4
-rw-r--r--poi/src/main/java/org/apache/poi/hssf/usermodel/HSSFSheet.java6
3 files changed, 7 insertions, 7 deletions
diff --git a/poi/src/main/java/org/apache/poi/hssf/model/InternalSheet.java b/poi/src/main/java/org/apache/poi/hssf/model/InternalSheet.java
index 8deeec15a3..e795f65048 100644
--- a/poi/src/main/java/org/apache/poi/hssf/model/InternalSheet.java
+++ b/poi/src/main/java/org/apache/poi/hssf/model/InternalSheet.java
@@ -1345,7 +1345,7 @@ public final class InternalSheet {
*
* <p>If both colSplit and rowSplit are zero then the existing freeze pane is removed</p>
*
- * @param colSplit Horizonatal position of split.
+ * @param colSplit Horizontal position of split.
* @param rowSplit Vertical position of split.
* @param topRow Top row visible in bottom pane
* @param leftmostColumn Left column visible in right pane.
@@ -1394,7 +1394,7 @@ public final class InternalSheet {
/**
* Creates a split pane. Any existing freezepane or split pane is overwritten.
- * @param xSplitPos Horizonatal position of split (in 1/20th of a point).
+ * @param xSplitPos Horizontal position of split (in 1/20th of a point).
* @param ySplitPos Vertical position of split (in 1/20th of a point).
* @param topRow Top row visible in bottom pane
* @param leftmostColumn Left column visible in right pane.
diff --git a/poi/src/main/java/org/apache/poi/hssf/record/HCenterRecord.java b/poi/src/main/java/org/apache/poi/hssf/record/HCenterRecord.java
index 37ee0ff63f..9072efd1d6 100644
--- a/poi/src/main/java/org/apache/poi/hssf/record/HCenterRecord.java
+++ b/poi/src/main/java/org/apache/poi/hssf/record/HCenterRecord.java
@@ -43,7 +43,7 @@ public final class HCenterRecord extends StandardRecord {
}
/**
- * set whether or not to horizonatally center this sheet.
+ * set whether or not to horizontally center this sheet.
* @param hc center - t/f
*/
public void setHCenter(boolean hc) {
@@ -51,7 +51,7 @@ public final class HCenterRecord extends StandardRecord {
}
/**
- * get whether or not to horizonatally center this sheet.
+ * get whether or not to horizontally center this sheet.
* @return center - t/f
*/
public boolean getHCenter()
diff --git a/poi/src/main/java/org/apache/poi/hssf/usermodel/HSSFSheet.java b/poi/src/main/java/org/apache/poi/hssf/usermodel/HSSFSheet.java
index bf87959812..33a400b804 100644
--- a/poi/src/main/java/org/apache/poi/hssf/usermodel/HSSFSheet.java
+++ b/poi/src/main/java/org/apache/poi/hssf/usermodel/HSSFSheet.java
@@ -1796,7 +1796,7 @@ public final class HSSFSheet implements Sheet {
*
* If both colSplit and rowSplit are zero then the existing freeze pane is removed
*
- * @param colSplit Horizonatal position of split.
+ * @param colSplit Horizontal position of split.
* @param rowSplit Vertical position of split.
* @param leftmostColumn Left column visible in right pane.
* @param topRow Top row visible in bottom pane
@@ -1817,7 +1817,7 @@ public final class HSSFSheet implements Sheet {
*
* If both colSplit and rowSplit are zero then the existing freeze pane is removed
*
- * @param colSplit Horizonatal position of split.
+ * @param colSplit Horizontal position of split.
* @param rowSplit Vertical position of split.
*/
@Override
@@ -1828,7 +1828,7 @@ public final class HSSFSheet implements Sheet {
/**
* Creates a split pane. Any existing freezepane or split pane is overwritten.
*
- * @param xSplitPos Horizonatal position of split (in 1/20th of a point).
+ * @param xSplitPos Horizontal position of split (in 1/20th of a point).
* @param ySplitPos Vertical position of split (in 1/20th of a point).
* @param topRow Top row visible in bottom pane
* @param leftmostColumn Left column visible in right pane.