From 35b11ef7912d8257a62391606a5659b13a3e4f02 Mon Sep 17 00:00:00 2001 From: mateuszmp Date: Mon, 13 Dec 2021 15:32:31 +0100 Subject: [PATCH] docs: fix spelling in JavaScript example. Fixed a spelling mistake in work "handshake" on line 33. Stylized grpc to gRPC on line 32. --- docs/grpc/javascript.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/docs/grpc/javascript.md b/docs/grpc/javascript.md index a36647ce3..efe99b78b 100644 --- a/docs/grpc/javascript.md +++ b/docs/grpc/javascript.md @@ -31,8 +31,8 @@ const grpc = require('@grpc/grpc-js'); const protoLoader = require('@grpc/proto-loader'); const fs = require("fs"); -// Due to updated ECDSA generated tls.cert we need to let gprc know that -// we need to use that cipher suite otherwise there will be a handhsake +// Due to updated ECDSA generated tls.cert we need to let gRPC know that +// we need to use that cipher suite otherwise there will be a handshake // error when we communicate with the lnd rpc server. process.env.GRPC_SSL_CIPHER_SUITES = 'HIGH+ECDSA'