summaryrefslogtreecommitdiffstats
path: root/source/core
diff options
context:
space:
mode:
Diffstat (limited to 'source/core')
-rw-r--r--source/core/slang-command-options-writer.cpp11
1 files changed, 3 insertions, 8 deletions
diff --git a/source/core/slang-command-options-writer.cpp b/source/core/slang-command-options-writer.cpp
index 333f84d04..ecb5fa698 100644
--- a/source/core/slang-command-options-writer.cpp
+++ b/source/core/slang-command-options-writer.cpp
@@ -599,14 +599,9 @@ void TextCommandOptionsWriter::_appendDescriptionForCategory(Index categoryIndex
m_builder << m_options.indent << m_options.indent;
- m_builder << "<" << usageCat.name << "> can be: ";
-
- List<UnownedStringSlice> optionNames;
- options.getCategoryOptionNames(usageCategoryIndex, optionNames);
-
- _appendWrappedIndented(2, optionNames, toSlice(", "));
-
- m_builder << "\n";
+ m_builder << "To get a list of values that can be used for <" << usageCat.name
+ << ">, ";
+ m_builder << "use \"slangc -h " << usageCat.name << "\"\n";
}
}
}