File tree Expand file tree Collapse file tree 1 file changed +2
-2
lines changed
Expand file tree Collapse file tree 1 file changed +2
-2
lines changed Original file line number Diff line number Diff line change @@ -32,7 +32,7 @@ $ rustup component add rustfmt
3232## Defining the HelloWorld service
3333
3434Our 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.
3636Note 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
131131fn main () -> Result <(), Box <dyn std :: error :: Error >> {
You can’t perform that action at this time.
0 commit comments