fixed typos in comment
authorSanjay Patel <spatel@rotateright.com>
Wed, 25 Jun 2014 22:15:12 +0000 (22:15 +0000)
committerSanjay Patel <spatel@rotateright.com>
Wed, 25 Jun 2014 22:15:12 +0000 (22:15 +0000)
llvm-svn: 211734

clang/include/clang/Tooling/CommonOptionsParser.h

index cc4f8df..815ede8 100644 (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) {