[clangd] Capitalized descriptions of clangd options. NFC.

To follow the style of other options shown on `clangd -help`.

llvm-svn: 309800
This commit is contained in:
Ilya Biryukov 2017-08-02 08:53:48 +00:00
parent fabe840e75
commit 4ca7d85d2a
1 changed files with 2 additions and 2 deletions

View File

@ -22,12 +22,12 @@ using namespace clang::clangd;
static llvm::cl::opt<bool>
RunSynchronously("run-synchronously",
llvm::cl::desc("parse on main thread"),
llvm::cl::desc("Parse on main thread"),
llvm::cl::init(false), llvm::cl::Hidden);
static llvm::cl::opt<std::string>
ResourceDir("resource-dir",
llvm::cl::desc("directory for system clang headers"),
llvm::cl::desc("Directory for system clang headers"),
llvm::cl::init(""), llvm::cl::Hidden);
int main(int argc, char *argv[]) {