add all_cols to add_indent
diff --git a/man/add_indent.Rd b/man/add_indent.Rd
index 439fd29..6145d01 100644
--- a/man/add_indent.Rd
+++ b/man/add_indent.Rd
@@ -4,13 +4,15 @@
 \alias{add_indent}
 \title{Add indentations to row headers}
 \usage{
-add_indent(kable_input, positions)
+add_indent(kable_input, positions, level_of_indent = 1, all_cols = F)
 }
 \arguments{
 \item{kable_input}{Output of \code{knitr::kable()} with \code{format} specified}
 
 \item{positions}{A vector of numeric row numbers for the rows that need to
 be indented.}
+
+\item{level_of_indent}{a numeric value for the indent level. Default is 1.}
 }
 \description{
 Add indentations to row headers
@@ -18,6 +20,6 @@
 \examples{
 x <- knitr::kable(head(mtcars), "html")
 # Add indentations to the 2nd & 4th row
-add_indent(x, c(2, 4))
+add_indent(x, c(2, 4), level_of_indent = 1)
 
 }