[cfe-commits] r149495 - /cfe/trunk/include/clang/Frontend/FrontendAction.h

Dylan Noblesmith nobled at dreamwidth.org
Wed Feb 1 05:50:20 PST 2012


Author: nobled
Date: Wed Feb  1 07:50:20 2012
New Revision: 149495

URL: http://llvm.org/viewvc/llvm-project?rev=149495&view=rev
Log:
Frontend: fix comment typos

Modified:
    cfe/trunk/include/clang/Frontend/FrontendAction.h

Modified: cfe/trunk/include/clang/Frontend/FrontendAction.h
URL: http://llvm.org/viewvc/llvm-project/cfe/trunk/include/clang/Frontend/FrontendAction.h?rev=149495&r1=149494&r2=149495&view=diff
==============================================================================
--- cfe/trunk/include/clang/Frontend/FrontendAction.h (original)
+++ cfe/trunk/include/clang/Frontend/FrontendAction.h Wed Feb  1 07:50:20 2012
@@ -85,7 +85,7 @@
 
   /// 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 @@
   /// 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.





More information about the cfe-commits mailing list