From 7077d8dfd0b4edab52fc2fee4a4b4a85e2d60728 Mon Sep 17 00:00:00 2001 From: Artem Vorotnikov Date: Fri, 13 Dec 2019 21:10:43 +0300 Subject: [PATCH] chore(docs): Fix routeguide tutorial link (#183) --- examples/helloworld-tutorial.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/examples/helloworld-tutorial.md b/examples/helloworld-tutorial.md index 2f949f2..32cd025 100644 --- a/examples/helloworld-tutorial.md +++ b/examples/helloworld-tutorial.md @@ -43,7 +43,7 @@ $ touch proto/helloworld.proto Then you define RPC methods inside your service definition, specifying their request and response types. gRPC lets you define four kinds of service methods, all of which are supported by Tonic. For this tutorial we will only use a simple RPC, if you would like to see a Tonic example which uses all four kinds please read the [routeguide tutorial]. -[routeguide tutorial]: https://github.com/hyperium/tonic/blob/master/tonic-examples/routeguide-tutorial.md +[routeguide tutorial]: https://github.com/hyperium/tonic/blob/master/examples/routeguide-tutorial.md First we define our package name, which is what Tonic looks for when including your protos in the client and server applications. Lets give this one a name of `helloworld`.