bug fix to column_spec
diff --git a/man/add_header_left.Rd b/man/add_header_left.Rd
index 51b2ae6..aab6b16 100644
--- a/man/add_header_left.Rd
+++ b/man/add_header_left.Rd
@@ -5,7 +5,7 @@
 \title{Add a heading column to the left side of the table}
 \usage{
 add_header_left(kable_input, header = NULL, header_name = "", align = "c",
-  width = NULL, bold = F, italic = F, full_midline)
+  width = NULL, bold = F, italic = F, ...)
 }
 \arguments{
 \item{kable_input}{Output of `knitr::kable()` with `format` specified}
@@ -28,9 +28,9 @@
 
 \item{italic}{A T/F value to control whether the text should to be emphasized.}
 
-\item{full_midline}{This option currently only work in LaTeX. It's a
-TRUE/FALSE option to control if the mid line needs to be extended to the end
-of row.}
+\item{...}{Extra options to be passed into HTML or LaTeX. Right now there is
+only one for LaTeX. Option full_midline is a TRUE/FALSE option to control
+if the mid line needs to be extended to the end of row.}
 }
 \description{
 This function uses the same syntax as add_header_above. It will
diff --git a/man/column_spec.Rd b/man/column_spec.Rd
index a107eb8..cf4b5cf 100644
--- a/man/column_spec.Rd
+++ b/man/column_spec.Rd
@@ -10,7 +10,9 @@
 \arguments{
 \item{kable_input}{Output of `knitr::kable()` with `format` specified}
 
-\item{column}{A numeric value indicating which column to be selected}
+\item{column}{A numeric value indicating which column to be selected. When
+you do the counting, ignore the extra header columns you added through
+add_header_left.}
 
 \item{width}{A character string telling HTML & LaTeX how wide the column
 needs to be, e.g. "10cm", "3in" or "30em".}