fixed typos in comment

llvm-svn: 211734
This commit is contained in:
Sanjay Patel 2014-06-25 22:15:12 +00:00
parent d7f158e006
commit f0a3996082
1 changed files with 1 additions and 1 deletions

View File

@ -50,7 +50,7 @@ namespace tooling {
/// static cl::OptionCategory MyToolCategory("My tool options");
/// static cl::extrahelp CommonHelp(CommonOptionsParser::HelpMessage);
/// static cl::extrahelp MoreHelp("\nMore help text...");
/// static cl:opt<bool> YourOwnOption(...);
/// static cl::opt<bool> YourOwnOption(...);
/// ...
///
/// int main(int argc, const char **argv) {