From f613386d9535c152188b2d47f73313178af6f77f Mon Sep 17 00:00:00 2001 From: JaydenElliott <53299144+JaydenElliott@users.noreply.github.com> Date: Fri, 14 May 2021 15:35:15 +1000 Subject: [PATCH] doc(examples): fixed grammar (#646) --- 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 f72386f..56d21de 100644 --- a/examples/helloworld-tutorial.md +++ b/examples/helloworld-tutorial.md @@ -240,7 +240,7 @@ async fn main() -> Result<(), Box> { You should now be able to run your HelloWorld gRPC server using the command `cargo run --bin helloworld-server`. This uses the [[bin]] we defined earlier in our `Cargo.toml` to run specifically the server. -If have a gRPC GUI client such as [Bloom RPC] you should be able to send requests to the server and get back greetings! +If you have a gRPC GUI client such as [Bloom RPC] you should be able to send requests to the server and get back greetings! Or if you use [grpcurl] then you can simply try send requests like this: ```