Skip to content

Commit c3c5dad

Browse files
Maarten Duijnstanley-cheung
authored andcommitted
Fix code typo in echo tutorial
1 parent 825bda1 commit c3c5dad

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

net/grpc/gateway/examples/echo/tutorial.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -135,7 +135,7 @@ Our command generates the client stub, by default, to the file
135135
Now you are ready to write some JS client code. Put this in a `client.js` file.
136136

137137
```js
138-
const {EchoRequest, EchoResponse} = require('./echo_pb.js'));
138+
const {EchoRequest, EchoResponse} = require('./echo_pb.js');
139139
const {EchoServiceClient} = require('./echo_grpc_web_pb.js');
140140
141141
var echoService = new EchoServiceClient('http://localhost:8080');

0 commit comments

Comments
 (0)