From a8e3ebd8b6d79865a87990928f7b5b63679d1d36 Mon Sep 17 00:00:00 2001 From: Haojian Wu <hokein@google.com> Date: Tue, 10 Oct 2017 09:00:56 +0000 Subject: [PATCH] Fix small nits in clang-refactor doc. git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@315286 91177308-0d34-0410-b5e6-96231b3b80d8 --- docs/RefactoringEngine.rst | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/docs/RefactoringEngine.rst b/docs/RefactoringEngine.rst index 581493fe400..e0d16ef437c 100644 --- a/docs/RefactoringEngine.rst +++ b/docs/RefactoringEngine.rst @@ -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 code: Rules.push_back( createRefactoringActionRule<DeleteSelectedRange>( SourceRangeSelectionRequirement()) - ) + ); The ``createRefactoringActionRule`` function takes in a list of refactoring action rule requirement values. These values describe the initiation -- GitLab