Version 1.1 release
diff --git a/man/group_rows.Rd b/man/group_rows.Rd
index b5b6db4..db032f5 100644
--- a/man/group_rows.Rd
+++ b/man/group_rows.Rd
@@ -2,6 +2,7 @@
 % Please edit documentation in R/group_rows.R
 \name{group_rows}
 \alias{group_rows}
+\alias{pack_rows}
 \title{Put a few rows of a table into one category}
 \usage{
 group_rows(kable_input, group_label = NULL, start_row = NULL,
@@ -10,6 +11,13 @@
   latex_gap_space = "0.3em", escape = TRUE, latex_align = "l",
   colnum = NULL, bold = TRUE, italic = FALSE, hline_before = FALSE,
   hline_after = FALSE, extra_latex_after = NULL, indent = TRUE)
+
+pack_rows(kable_input, group_label = NULL, start_row = NULL,
+  end_row = NULL, index = NULL,
+  label_row_css = "border-bottom: 1px solid;",
+  latex_gap_space = "0.3em", escape = TRUE, latex_align = "l",
+  colnum = NULL, bold = TRUE, italic = FALSE, hline_before = FALSE,
+  hline_after = FALSE, extra_latex_after = NULL, indent = TRUE)
 }
 \arguments{
 \item{kable_input}{Output of \code{knitr::kable()} with \code{format} specified}
@@ -65,6 +73,6 @@
 \examples{
 x <- knitr::kable(head(mtcars), "html")
 # Put Row 2 to Row 5 into a Group and label it as "Group A"
-group_rows(x, "Group A", 2, 5)
+pack_rows(x, "Group A", 2, 5)
 
 }