]> source.dussan.org Git - poi.git/commitdiff
bug 58815: javadoc spelling
authorJaven O'Neal <onealj@apache.org>
Thu, 7 Jan 2016 01:53:05 +0000 (01:53 +0000)
committerJaven O'Neal <onealj@apache.org>
Thu, 7 Jan 2016 01:53:05 +0000 (01:53 +0000)
git-svn-id: https://svn.apache.org/repos/asf/poi/trunk@1723445 13f79535-47bb-0310-9956-ffa450edef68

src/java/org/apache/poi/ss/usermodel/Sheet.java

index 055072d26289e49201aeb379d6331ff978b10d10..38986bbdde306e7c59017380e8d29fc3a0c874b6 100644 (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);