From 5736ec4375888108de4b788a024da29aaf651f59 Mon Sep 17 00:00:00 2001 From: Patrice Chalin Date: Mon, 13 Jul 2020 16:54:32 -0400 Subject: [PATCH] Dart quick start: fix path to examples (#356) * Dart quick start: fix path to examples Fixes #355 * Also fix path in the tutorial --- .cspell.json | 33 ++++++++++++----------- content/docs/languages/dart/basics.md | 2 +- content/docs/languages/dart/quickstart.md | 3 ++- 3 files changed, 21 insertions(+), 17 deletions(-) diff --git a/.cspell.json b/.cspell.json index 669a73c..f614a7b 100644 --- a/.cspell.json +++ b/.cspell.json @@ -1,17 +1,20 @@ { - "version": "0.1", - "language": "en", - // Workspace dictionary: - "words": [ - "protoc", - "RPCs" - ], - "flagWords": [], - "ignoreWords": [ - "codegen", - "grpc", - "proto", - "protos", - "routeguide" - ] + "version": "0.1", + "language": "en", + // Workspace dictionary: + "words": [ + "protoc", + "RPCs", + "SDKs" + ], + "flagWords": [], + "ignoreWords": [ + "codegen", + "grpc", + "helloworld", + "proto", + "protobuf", + "protos", + "routeguide" + ] } \ No newline at end of file diff --git a/content/docs/languages/dart/basics.md b/content/docs/languages/dart/basics.md index aa9ab04..2800ef6 100644 --- a/content/docs/languages/dart/basics.md +++ b/content/docs/languages/dart/basics.md @@ -507,7 +507,7 @@ write in any order — the streams operate completely independently. Work from the example directory: ```sh -$ cd examples/route_guide +$ cd example/route_guide ``` Get packages: diff --git a/content/docs/languages/dart/quickstart.md b/content/docs/languages/dart/quickstart.md index 776a6c7..9004bf7 100644 --- a/content/docs/languages/dart/quickstart.md +++ b/content/docs/languages/dart/quickstart.md @@ -2,6 +2,7 @@ title: Quick Start description: This guide gets you started with gRPC in Dart with a simple working example. weight: 10 +spelling: cSpell:ignore Iprotos --- ### Prerequisites @@ -48,7 +49,7 @@ The example code is part of the [grpc-dart][] repo. 2. Change to the quick start example directory: ```sh - $ cd grpc-dart/examples/helloworld + $ cd grpc-dart/example/helloworld ``` ### Run the example