From c62f382e3c6e9c0641decfafb2b8396fe52b6314 Mon Sep 17 00:00:00 2001 From: Mfon Eti-mfon <50708034+mfonism@users.noreply.github.com> Date: Thu, 11 Nov 2021 16:49:45 +0100 Subject: [PATCH] chore(examples): fix wording in helloworld tutorial (#836) closes #835 --- examples/helloworld-tutorial.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/examples/helloworld-tutorial.md b/examples/helloworld-tutorial.md index d5d586e6c..bc3c15b68 100644 --- a/examples/helloworld-tutorial.md +++ b/examples/helloworld-tutorial.md @@ -32,7 +32,7 @@ $ rustup component add rustfmt ## Defining the HelloWorld service Our first step is to define the gRPC _service_ and the method _request_ and _response_ types using -[protocol buffers]. We will keep our `.proto` files in a directory in our crate's root. +[protocol buffers]. We will keep our `.proto` files in a directory in our project's root. Note that Tonic does not really care where our `.proto` definitions live. ```shell @@ -125,7 +125,7 @@ We include `tonic-build` as a useful way to incorporate the generation of our cl ## Generating Server and Client code -At the root of your crate, create a `build.rs` file and add the following code: +At the root of your project, create a `build.rs` file and add the following code: ```rust fn main() -> Result<(), Box> {