diff options
Diffstat (limited to 'clang-tools-extra/clangd/refactor/Rename.cpp')
-rw-r--r-- | clang-tools-extra/clangd/refactor/Rename.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/clang-tools-extra/clangd/refactor/Rename.cpp b/clang-tools-extra/clangd/refactor/Rename.cpp index 010f7e388b5..7d97ac8c964 100644 --- a/clang-tools-extra/clangd/refactor/Rename.cpp +++ b/clang-tools-extra/clangd/refactor/Rename.cpp @@ -364,7 +364,7 @@ llvm::Expected<FileEdits> renameOutsideFile( std::move(FileAndOccurrences.second), RenameDecl.getASTContext().getLangOpts()); if (!RenameRanges) { - // Our heuristice fails to adjust rename ranges to the current state of + // Our heuristics fails to adjust rename ranges to the current state of // the file, it is most likely the index is stale, so we give up the // entire rename. return llvm::make_error<llvm::StringError>( @@ -387,7 +387,7 @@ llvm::Expected<FileEdits> renameOutsideFile( return Results; } -// A simple edit is eithor changing line or column, but not both. +// A simple edit is either changing line or column, but not both. bool impliesSimpleEdit(const Position &LHS, const Position &RHS) { return LHS.line == RHS.line || LHS.character == RHS.character; } |