[clang-tools-extra] r354456 - [clangd] Fix a typo. NFC
Ilya Biryukov via cfe-commits
cfe-commits at lists.llvm.org
Wed Feb 20 04:31:45 PST 2019
Author: ibiryukov
Date: Wed Feb 20 04:31:44 2019
New Revision: 354456
URL: http://llvm.org/viewvc/llvm-project?rev=354456&view=rev
Log:
[clangd] Fix a typo. NFC
The documentation for -index-file mentioned clang-index instead of
clangd-indexer.
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=354456&r1=354455&r2=354456&view=diff
==============================================================================
--- clang-tools-extra/trunk/clangd/tool/ClangdMain.cpp (original)
+++ clang-tools-extra/trunk/clangd/tool/ClangdMain.cpp Wed Feb 20 04:31:44 2019
@@ -163,7 +163,7 @@ static llvm::cl::opt<Path> IndexFile(
"index-file",
llvm::cl::desc(
"Index file to build the static index. The file must have been created "
- "by a compatible clangd-index.\n"
+ "by a compatible clangd-indexer.\n"
"WARNING: This option is experimental only, and will be removed "
"eventually. Don't rely on it."),
llvm::cl::init(""), llvm::cl::Hidden);
More information about the cfe-commits
mailing list