From 84e35a337289fead87bd7f254cfb05a223144051 Mon Sep 17 00:00:00 2001 From: Brian Fallik Date: Mon, 14 Sep 2020 14:15:58 -0400 Subject: [PATCH] Copyedit to Dart basics tutorial -- add 'this' (#387) --- content/docs/languages/dart/basics.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/content/docs/languages/dart/basics.md b/content/docs/languages/dart/basics.md index 2800ef6..7379e1e 100644 --- a/content/docs/languages/dart/basics.md +++ b/content/docs/languages/dart/basics.md @@ -387,7 +387,7 @@ You can use `ChannelOptions` to set TLS options (e.g., trusted certificates) for the channel, if necessary. Once the gRPC *channel* is setup, we need a client *stub* to perform RPCs. We -get by creating a new instance of the `RouteGuideClient` object provided in the +get this by creating a new instance of the `RouteGuideClient` object provided in the package we generated from our .proto. ```dart