Fix indentation of a code example in LibTooling's documentation.
authorJames Dennett <jdennett@google.com>
Thu, 6 Feb 2014 20:16:05 +0000 (20:16 +0000)
committerJames Dennett <jdennett@google.com>
Thu, 6 Feb 2014 20:16:05 +0000 (20:16 +0000)
llvm-svn: 200944

clang/docs/LibTooling.rst

index 6fba986..57f207f 100644 (file)
@@ -135,7 +135,7 @@ version of this example tool is also checked into the clang tree at
   int main(int argc, const char **argv) {
     CommonOptionsParser OptionsParser(argc, argv, MyToolCategory);
     ClangTool Tool(OptionsParser.getCompilations(),
-    OptionsParser.getSourcePathList());
+                   OptionsParser.getSourcePathList());
     return Tool.run(newFrontendActionFactory<clang::SyntaxOnlyAction>());
   }