Fix the docstring for --symbols flag

RELNOTES: None.
PiperOrigin-RevId: 253648877
diff --git a/src/main/java/com/google/devtools/build/skydoc/SkydocOptions.java b/src/main/java/com/google/devtools/build/skydoc/SkydocOptions.java
index 8408bf8..3cddfec 100644
--- a/src/main/java/com/google/devtools/build/skydoc/SkydocOptions.java
+++ b/src/main/java/com/google/devtools/build/skydoc/SkydocOptions.java
@@ -63,7 +63,11 @@
       defaultValue = "",
       documentationCategory = OptionDocumentationCategory.UNDOCUMENTED,
       effectTags = OptionEffectTag.UNKNOWN,
-      help = "The path of the file to output documentation into")
+      help =
+          "A list of symbol names to generate documentation for. These should correspond to the"
+              + " names of rule, provider, or function definitions in the input file. If this list"
+              + " is empty, then documentation for all exported rule definitions will be"
+              + " generated.")
   public List<String> symbolNames;
 
   @Option(