summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorSanjay Patel <spatel@rotateright.com>2014-06-25 22:15:12 +0000
committerSanjay Patel <spatel@rotateright.com>2014-06-25 22:15:12 +0000
commit85fb905d517e07b0322fee8236e7b3314fb799aa (patch)
treeb8276d918225e89f256cfd57f77ddb6218724b87
parent6f641ccd0e64bbfd28794eb2fbbf50169d7898b7 (diff)
downloadclang-85fb905d517e07b0322fee8236e7b3314fb799aa.tar.gz
clang-85fb905d517e07b0322fee8236e7b3314fb799aa.tar.bz2
clang-85fb905d517e07b0322fee8236e7b3314fb799aa.tar.xz
fixed typos in comment
git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@211734 91177308-0d34-0410-b5e6-96231b3b80d8
-rw-r--r--include/clang/Tooling/CommonOptionsParser.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/include/clang/Tooling/CommonOptionsParser.h b/include/clang/Tooling/CommonOptionsParser.h
index cc4f8df136..815ede80c2 100644
--- a/include/clang/Tooling/CommonOptionsParser.h
+++ b/include/clang/Tooling/CommonOptionsParser.h
@@ -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) {