From d2d9079211ab8786dff2848d58057e294f3546f2 Mon Sep 17 00:00:00 2001 From: Bryant Hagadorn <4451303+blhagadorn@users.noreply.github.com> Date: Thu, 19 Nov 2020 12:53:20 -0500 Subject: [PATCH] Fix undefined markdown link reference in C++ Quick start (#532) --- content/docs/languages/cpp/quickstart.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/content/docs/languages/cpp/quickstart.md b/content/docs/languages/cpp/quickstart.md index 7d3d77f..eea9041 100644 --- a/content/docs/languages/cpp/quickstart.md +++ b/content/docs/languages/cpp/quickstart.md @@ -174,7 +174,7 @@ Now let's look at how to update the application with an extra method on the server for the client to call. Our gRPC service is defined using protocol buffers; you can find out lots more about how to define a service in a `.proto` file in [Introduction to gRPC](/docs/what-is-grpc/introduction/) and [Basics -tutorial][]. For now all you need to know is that both the +tutorial](../basics/). For now all you need to know is that both the server and the client stub have a `SayHello()` RPC method that takes a `HelloRequest` parameter from the client and returns a `HelloResponse` from the server, and that this method is defined like this: