add all_cols to add_indent
diff --git a/man/group_rows.Rd b/man/group_rows.Rd
index db032f5..d39d0d2 100644
--- a/man/group_rows.Rd
+++ b/man/group_rows.Rd
@@ -5,19 +5,45 @@
 \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,
-  end_row = NULL, index = NULL,
+group_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)
+  latex_gap_space = "0.3em",
+  escape = TRUE,
+  latex_align = "l",
+  latex_wrap_text = FALSE,
+  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,
+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)
+  latex_gap_space = "0.3em",
+  escape = TRUE,
+  latex_align = "l",
+  latex_wrap_text = FALSE,
+  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}
@@ -50,6 +76,10 @@
 Value is "l"  If using html, the alignment can be set by using the label_row_css
 parameter.}
 
+\item{latex_wrap_text}{T/F for wrapping long text. Default is off. Whenever
+it is turned on, the table will take up the entire line. It's recommended
+to use this with full_width in kable_styling.}
+
 \item{colnum}{A numeric that determines how many columns the text should span.
 The default setting will have the text span the entire length.}