[clang-tools-extra] r339673 - [clangd] NFC: Cleanup clangd help message
Kirill Bobyrev via cfe-commits
cfe-commits at lists.llvm.org
Tue Aug 14 05:00:39 PDT 2018
Author: omtcyfz
Date: Tue Aug 14 05:00:39 2018
New Revision: 339673
URL: http://llvm.org/viewvc/llvm-project?rev=339673&view=rev
Log:
[clangd] NFC: Cleanup clangd help message
Add missed space, fix a typo.
Reviewed by: ioeric
Differential Revision: https://reviews.llvm.org/D50702
Modified:
clang-tools-extra/trunk/clangd/tool/ClangdMain.cpp
Modified: clang-tools-extra/trunk/clangd/tool/ClangdMain.cpp
URL: http://llvm.org/viewvc/llvm-project/clang-tools-extra/trunk/clangd/tool/ClangdMain.cpp?rev=339673&r1=339672&r2=339673&view=diff
==============================================================================
--- clang-tools-extra/trunk/clangd/tool/ClangdMain.cpp (original)
+++ clang-tools-extra/trunk/clangd/tool/ClangdMain.cpp Tue Aug 14 05:00:39 2018
@@ -147,7 +147,7 @@ static llvm::cl::opt<Path> InputMirrorFi
static llvm::cl::opt<bool> EnableIndex(
"index",
llvm::cl::desc("Enable index-based features such as global code completion "
- "and searching for symbols."
+ "and searching for symbols. "
"Clang uses an index built from symbols in opened files"),
llvm::cl::init(true));
@@ -160,7 +160,7 @@ static llvm::cl::opt<bool>
static llvm::cl::opt<bool> HeaderInsertionDecorators(
"header-insertion-decorators",
llvm::cl::desc("Prepend a circular dot or space before the completion "
- "label, depending on wether "
+ "label, depending on whether "
"an include line will be inserted or not."),
llvm::cl::init(true));
More information about the cfe-commits
mailing list