From 48e9d6a6d5df5965d345d61b1f28dbff1dfaf6d7 Mon Sep 17 00:00:00 2001 From: PJ Fanning Date: Wed, 20 Jul 2022 10:45:04 +0000 Subject: [PATCH] javadoc git-svn-id: https://svn.apache.org/repos/asf/poi/trunk@1902872 13f79535-47bb-0310-9956-ffa450edef68 --- .../main/java/org/apache/poi/xssf/streaming/SXSSFSheet.java | 6 +++--- .../main/java/org/apache/poi/hssf/model/InternalSheet.java | 4 ++-- .../main/java/org/apache/poi/hssf/record/HCenterRecord.java | 4 ++-- .../main/java/org/apache/poi/hssf/usermodel/HSSFSheet.java | 6 +++--- 4 files changed, 10 insertions(+), 10 deletions(-) diff --git a/poi-ooxml/src/main/java/org/apache/poi/xssf/streaming/SXSSFSheet.java b/poi-ooxml/src/main/java/org/apache/poi/xssf/streaming/SXSSFSheet.java index 081a1f4b65..799a15a4f3 100644 --- a/poi-ooxml/src/main/java/org/apache/poi/xssf/streaming/SXSSFSheet.java +++ b/poi-ooxml/src/main/java/org/apache/poi/xssf/streaming/SXSSFSheet.java @@ -946,7 +946,7 @@ public class SXSSFSheet implements Sheet, OoxmlSheetExtensions { /** * Creates a split (freezepane). Any existing freezepane or split pane is overwritten. - * @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 @@ -958,7 +958,7 @@ public class SXSSFSheet implements Sheet, OoxmlSheetExtensions { /** * Creates a split (freezepane). Any existing freezepane or split pane is overwritten. - * @param colSplit Horizonatal position of split. + * @param colSplit Horizontal position of split. * @param rowSplit Vertical position of split. */ @Override @@ -968,7 +968,7 @@ public class SXSSFSheet implements Sheet, OoxmlSheetExtensions { /** * 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/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 { * *

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 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. -- 2.39.5