diff options
author | Dylan Noblesmith <nobled@dreamwidth.org> | 2012-02-01 13:50:20 +0000 |
---|---|---|
committer | Dylan Noblesmith <nobled@dreamwidth.org> | 2012-02-01 13:50:20 +0000 |
commit | 9759e9b11b1a9789f13d38a494211e94a305fc43 (patch) | |
tree | 544ac7be3b424f5abf7cc00c560a610c46c01357 /clang | |
parent | 824eed70a68a6b3c0c47c80a6c91d960da43bb67 (diff) | |
download | bcm5719-llvm-9759e9b11b1a9789f13d38a494211e94a305fc43.tar.gz bcm5719-llvm-9759e9b11b1a9789f13d38a494211e94a305fc43.zip |
Frontend: fix comment typos
llvm-svn: 149495
Diffstat (limited to 'clang')
-rw-r--r-- | clang/include/clang/Frontend/FrontendAction.h | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/clang/include/clang/Frontend/FrontendAction.h b/clang/include/clang/Frontend/FrontendAction.h index 041c1d3afc5..80d0d5fe0c3 100644 --- a/clang/include/clang/Frontend/FrontendAction.h +++ b/clang/include/clang/Frontend/FrontendAction.h @@ -85,7 +85,7 @@ protected: /// EndSourceFileAction - Callback at the end of processing a single input; /// this is guaranteed to only be called following a successful call to - /// BeginSourceFileAction (and BeingSourceFile). + /// BeginSourceFileAction (and BeginSourceFile). virtual void EndSourceFileAction() {} /// @} @@ -183,8 +183,8 @@ public: /// automatically be shared with the AST file in between \see /// BeginSourceFile() and \see EndSourceFile(). /// - /// \return True on success; the compilation of this file should be aborted - /// and neither Execute nor EndSourceFile should be called. + /// \return True on success; on failure the compilation of this file should + /// be aborted and neither Execute nor EndSourceFile should be called. bool BeginSourceFile(CompilerInstance &CI, const FrontendInputFile &Input); /// Execute - Set the source managers main input file, and run the action. |