[clang-tools-extra] 47fcf23 - [clangd] Fix recommended gRPC version
via cfe-commits
cfe-commits at lists.llvm.org
Tue Nov 10 04:07:06 PST 2020
Author: Kirill Bobyrev
Date: 2020-11-10T15:07:03+03:00
New Revision: 47fcf233ce6cb64f2f94e0747bbea1854cdb562f
URL: https://github.com/llvm/llvm-project/commit/47fcf233ce6cb64f2f94e0747bbea1854cdb562f
DIFF: https://github.com/llvm/llvm-project/commit/47fcf233ce6cb64f2f94e0747bbea1854cdb562f.diff
LOG: [clangd] Fix recommended gRPC version
Typo: 1.32.2 does not exist, it should be 1.33.2 https://github.com/grpc/grpc/releases/tag/v1.33.2
Added:
Modified:
clang-tools-extra/clangd/index/remote/README.md
Removed:
################################################################################
diff --git a/clang-tools-extra/clangd/index/remote/README.md b/clang-tools-extra/clangd/index/remote/README.md
index 235e967ff878..0f9c01ab4bd5 100644
--- a/clang-tools-extra/clangd/index/remote/README.md
+++ b/clang-tools-extra/clangd/index/remote/README.md
@@ -35,7 +35,7 @@ can easily uninstall gRPC or use
diff erent versions.
```bash
# Get source code.
-$ git clone -b v1.32.2 https://github.com/grpc/grpc
+$ git clone -b v1.33.2 https://github.com/grpc/grpc
$ cd grpc
$ git submodule update --init
# Choose directory where you want gRPC installation to live.
More information about the cfe-commits
mailing list