From 2d66a0aa307293036b9c5c6dd3e897a7d7a0161e Mon Sep 17 00:00:00 2001 From: Masakazu Muraoka Date: Mon, 15 Aug 2022 23:33:01 +0900 Subject: [PATCH] Update helloworld-tutorial.md (#1057) grpcurl command have been run successfully with modifieded like above. --- examples/helloworld-tutorial.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/examples/helloworld-tutorial.md b/examples/helloworld-tutorial.md index 1f2c3f5..8fc4580 100644 --- a/examples/helloworld-tutorial.md +++ b/examples/helloworld-tutorial.md @@ -243,7 +243,7 @@ If you have a gRPC GUI client such as [Bloom RPC] you should be able to send req Or if you use [grpcurl] then you can simply try send requests like this: ``` -$ grpcurl -plaintext -import-path ./proto -proto helloworld.proto -d '{"name": "Tonic"}' [::]:50051 helloworld.Greeter/SayHello +$ grpcurl -plaintext -import-path ./proto -proto helloworld.proto -d '{"name": "Tonic"}' '[::]:50051' helloworld.Greeter/SayHello ``` And receiving responses like this: ```