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> {