diff --git a/examples/helloworld-tutorial.md b/examples/helloworld-tutorial.md index 87dea6f..1a5a379 100644 --- a/examples/helloworld-tutorial.md +++ b/examples/helloworld-tutorial.md @@ -129,7 +129,7 @@ At the root of your crate, create a `build.rs` file and add the following code: ```rust fn main() -> Result<(), Box> { - tonic_build::compile_protos("proto/helloworld.proto")?; + tonic_build::compile_protos("src/proto/helloworld.proto")?; Ok(()) } ```