[clangd] tweak tile should start with a capital letter.

to consistent with other tweaks.
This commit is contained in:
Haojian Wu 2022-04-21 11:20:40 +02:00
parent 3df86e799e
commit 82cddb173f

View file

@ -91,7 +91,7 @@ public:
return CodeAction::REFACTOR_KIND;
}
std::string title() const override {
return llvm::formatv("declare implicit {0} members",
return llvm::formatv("Declare implicit {0} members",
NeedCopy ? NeedMove ? "copy/move" : "copy" : "move");
}