r315286 - Fix small nits in clang-refactor doc.

Haojian Wu via cfe-commits cfe-commits at lists.llvm.org
Tue Oct 10 02:00:57 PDT 2017


Author: hokein
Date: Tue Oct 10 02:00:56 2017
New Revision: 315286

URL: http://llvm.org/viewvc/llvm-project?rev=315286&view=rev
Log:
Fix small nits in clang-refactor doc.

Modified:
    cfe/trunk/docs/RefactoringEngine.rst

Modified: cfe/trunk/docs/RefactoringEngine.rst
URL: http://llvm.org/viewvc/llvm-project/cfe/trunk/docs/RefactoringEngine.rst?rev=315286&r1=315285&r2=315286&view=diff
==============================================================================
--- cfe/trunk/docs/RefactoringEngine.rst (original)
+++ cfe/trunk/docs/RefactoringEngine.rst Tue Oct 10 02:00:56 2017
@@ -41,7 +41,7 @@ outline of a ``local-rename`` action:
   public:
     StringRef getCommand() const override { return "local-rename"; }
 
-   StringRef getDescription() const override {
+    StringRef getDescription() const override {
       return "Finds and renames symbols in code with no indexer support";
     }
 
@@ -143,7 +143,7 @@ list of action rules using the following
   Rules.push_back(
     createRefactoringActionRule<DeleteSelectedRange>(
           SourceRangeSelectionRequirement())
-  )
+  );
 
 The ``createRefactoringActionRule`` function takes in a list of refactoring
 action rule requirement values. These values describe the initiation




More information about the cfe-commits mailing list