Fix code typo in echo tutorial

This commit is contained in:
Maarten Duijn 2018-11-06 09:16:02 +01:00 committed by Stanley Cheung
parent 825bda1091
commit c3c5dada94
1 changed files with 1 additions and 1 deletions

View File

@ -135,7 +135,7 @@ Our command generates the client stub, by default, to the file
Now you are ready to write some JS client code. Put this in a `client.js` file.
```js
const {EchoRequest, EchoResponse} = require('./echo_pb.js'));
const {EchoRequest, EchoResponse} = require('./echo_pb.js');
const {EchoServiceClient} = require('./echo_grpc_web_pb.js');
var echoService = new EchoServiceClient('http://localhost:8080');