From 05fc7bf4713032f4e30079da7ef9a395700e8a1f Mon Sep 17 00:00:00 2001 From: Patrice Chalin Date: Thu, 28 Jan 2021 16:21:49 -0500 Subject: [PATCH] C++ async tutorial: fix link to basics, switch to using relref (#616) --- content/en/docs/languages/cpp/async.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/content/en/docs/languages/cpp/async.md b/content/en/docs/languages/cpp/async.md index 1e96de8..06e773f 100644 --- a/content/en/docs/languages/cpp/async.md +++ b/content/en/docs/languages/cpp/async.md @@ -8,9 +8,9 @@ spelling: cSpell:ignore classgrpc Impl's This tutorial shows you how to write a simple server and client in C++ using gRPC's asynchronous/non-blocking APIs. It assumes you are already familiar with writing simple synchronous gRPC code, as described in [Basics -tutorial](/docs/languages/android/basics/). The example used in this tutorial follows +tutorial]({{< relref "basics" >}}). The example used in this tutorial follows from the basic [Greeter example](https://github.com/grpc/grpc/tree/{{< param grpc_vers.core >}}/examples/cpp/helloworld) used in the -[quick start](../quickstart/). You'll find it along with installation +[quick start]({{< relref "quickstart" >}}). You'll find it along with installation instructions in [grpc/examples/cpp/helloworld](https://github.com/grpc/grpc/tree/{{< param grpc_vers.core >}}/examples/cpp/helloworld).