diff --git a/public/gatk-tools-public/src/main/java/org/broadinstitute/gatk/tools/walkers/variantutils/VariantsToTable.java b/public/gatk-tools-public/src/main/java/org/broadinstitute/gatk/tools/walkers/variantutils/VariantsToTable.java
index ef4546181..5a4b7e2b5 100644
--- a/public/gatk-tools-public/src/main/java/org/broadinstitute/gatk/tools/walkers/variantutils/VariantsToTable.java
+++ b/public/gatk-tools-public/src/main/java/org/broadinstitute/gatk/tools/walkers/variantutils/VariantsToTable.java
@@ -69,12 +69,10 @@ import java.util.*;
*
*
* Input
- *
*
* - A VCF file
* - A list of -F fields to write
*
- *
*
* Output
*
@@ -98,9 +96,11 @@ import java.util.*;
* et cetera...
*
*
- *
Caveat
- * If a VCF record is missing a value, then the tool by default throws an error, but the special value NA can
- * be emitted instead if requested at the command line using --allowMissingData.
+ * Caveats
+ *
+ * - Some annotations cannot be applied to all variant sites, so VCFs typically contain records where some annotation values are missing. By default this tool throws an error if you request export of an annotation for which not all records have values. You can override this behavior by setting --allowMissingData in the command line. As a result, the tool will emit the special value NA for the missing annotations in those records.
+ * - When you request export of sample-level annotations (FORMAT field annotations such as GT), the annotations will be identified per-sample. If multiple samples are present in the VCF, the columns will be ordered alphabetically by sample name (SM tag).
+ *
*
* @author Mark DePristo
* @since 2010