Skip to content

Commit c62f382

Browse files
authored
chore(examples): fix wording in helloworld tutorial (#836)
closes #835
1 parent 8508f36 commit c62f382

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

examples/helloworld-tutorial.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -32,7 +32,7 @@ $ rustup component add rustfmt
3232
## Defining the HelloWorld service
3333

3434
Our first step is to define the gRPC _service_ and the method _request_ and _response_ types using
35-
[protocol buffers]. We will keep our `.proto` files in a directory in our crate's root.
35+
[protocol buffers]. We will keep our `.proto` files in a directory in our project's root.
3636
Note that Tonic does not really care where our `.proto` definitions live.
3737

3838
```shell
@@ -125,7 +125,7 @@ We include `tonic-build` as a useful way to incorporate the generation of our cl
125125

126126
## Generating Server and Client code
127127

128-
At the root of your crate, create a `build.rs` file and add the following code:
128+
At the root of your project, create a `build.rs` file and add the following code:
129129

130130
```rust
131131
fn main() -> Result<(), Box<dyn std::error::Error>> {

0 commit comments

Comments
 (0)