Skip to content

Commit

Permalink
chore(examples): fix wording in helloworld tutorial (#836)
Browse files Browse the repository at this point in the history
closes #835
  • Loading branch information
mfonism committed Nov 11, 2021
1 parent 8508f36 commit c62f382
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions examples/helloworld-tutorial.md
Expand Up @@ -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
Expand Down Expand Up @@ -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>> {
Expand Down

0 comments on commit c62f382

Please sign in to comment.