bug 58815: javadoc spelling

git-svn-id: https://svn.apache.org/repos/asf/poi/trunk@1723445 13f79535-47bb-0310-9956-ffa450edef68
This commit is contained in:
Javen O'Neal 2016-01-07 01:53:05 +00:00
parent afb36678f5
commit 1e9fd97f78

View File

@ -828,7 +828,7 @@ public interface Sheet extends Iterable<Row> {
void groupColumn(int fromColumn, int toColumn);
/**
* Ungroup a range of columns that were previously groupped
* Ungroup a range of columns that were previously grouped
*
* @param fromColumn start column (0-based)
* @param toColumn end column (0-based)
@ -844,7 +844,7 @@ public interface Sheet extends Iterable<Row> {
void groupRow(int fromRow, int toRow);
/**
* Ungroup a range of rows that were previously groupped
* Ungroup a range of rows that were previously grouped
*
* @param fromRow start row (0-based)
* @param toRow end row (0-based)
@ -852,9 +852,9 @@ public interface Sheet extends Iterable<Row> {
void ungroupRow(int fromRow, int toRow);
/**
* Set view state of a groupped range of rows
* Set view state of a grouped range of rows
*
* @param row start row of a groupped range of rows (0-based)
* @param row start row of a grouped range of rows (0-based)
* @param collapse whether to expand/collapse the detail rows
*/
void setRowGroupCollapsed(int row, boolean collapse);