chore(examples): fix wording in helloworld tutorial (#836)

closes #835
This commit is contained in:
Mfon Eti-mfon
2021-11-11 16:49:45 +01:00
committed by GitHub
parent 8508f369c2
commit c62f382e3c
+2 -2
View File
@@ -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<dyn std::error::Error>> {