[PATCH] D91694: [clangd] Remove the trailing "." in add-using message.
Haojian Wu via Phabricator via cfe-commits
cfe-commits at lists.llvm.org
Wed Nov 18 02:45:10 PST 2020
hokein created this revision.
hokein added a reviewer: adamcz.
Herald added subscribers: usaxena95, kadircet, arphaman.
Herald added a project: clang.
hokein requested review of this revision.
Herald added subscribers: MaskRay, ilya-biryukov.
to be consistent witih other code actions.
Repository:
rG LLVM Github Monorepo
https://reviews.llvm.org/D91694
Files:
clang-tools-extra/clangd/refactor/tweaks/AddUsing.cpp
Index: clang-tools-extra/clangd/refactor/tweaks/AddUsing.cpp
===================================================================
--- clang-tools-extra/clangd/refactor/tweaks/AddUsing.cpp
+++ clang-tools-extra/clangd/refactor/tweaks/AddUsing.cpp
@@ -52,7 +52,7 @@
std::string AddUsing::title() const {
return std::string(llvm::formatv(
- "Add using-declaration for {0} and remove qualifier.", Name));
+ "Add using-declaration for {0} and remove qualifier", Name));
}
// Locates all "using" statements relevant to SelectionDeclContext.
-------------- next part --------------
A non-text attachment was scrubbed...
Name: D91694.306021.patch
Type: text/x-patch
Size: 554 bytes
Desc: not available
URL: <http://lists.llvm.org/pipermail/cfe-commits/attachments/20201118/0dcb8f30/attachment.bin>
More information about the cfe-commits
mailing list