Drop version due to CRAN resubmission; Add examples as requested
diff --git a/man/group_rows.Rd b/man/group_rows.Rd
index 1a313e6..6cf58ee 100644
--- a/man/group_rows.Rd
+++ b/man/group_rows.Rd
@@ -30,3 +30,9 @@
 \description{
 Group a few rows in a table together under a label.
 }
+\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)
+
+}