Dart quick start: fix path to examples (#356)

* Dart quick start: fix path to examples

Fixes #355

* Also fix path in the tutorial
This commit is contained in:
Patrice Chalin 2020-07-13 16:54:32 -04:00 committed by GitHub
parent eb255fc0b9
commit 5736ec4375
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
3 changed files with 21 additions and 17 deletions

View File

@ -1,17 +1,20 @@
{ {
"version": "0.1", "version": "0.1",
"language": "en", "language": "en",
// Workspace dictionary: // Workspace dictionary:
"words": [ "words": [
"protoc", "protoc",
"RPCs" "RPCs",
], "SDKs"
"flagWords": [], ],
"ignoreWords": [ "flagWords": [],
"codegen", "ignoreWords": [
"grpc", "codegen",
"proto", "grpc",
"protos", "helloworld",
"routeguide" "proto",
] "protobuf",
"protos",
"routeguide"
]
} }

View File

@ -507,7 +507,7 @@ write in any order — the streams operate completely independently.
Work from the example directory: Work from the example directory:
```sh ```sh
$ cd examples/route_guide $ cd example/route_guide
``` ```
Get packages: Get packages:

View File

@ -2,6 +2,7 @@
title: Quick Start title: Quick Start
description: This guide gets you started with gRPC in Dart with a simple working example. description: This guide gets you started with gRPC in Dart with a simple working example.
weight: 10 weight: 10
spelling: cSpell:ignore Iprotos
--- ---
### Prerequisites ### Prerequisites
@ -48,7 +49,7 @@ The example code is part of the [grpc-dart][] repo.
2. Change to the quick start example directory: 2. Change to the quick start example directory:
```sh ```sh
$ cd grpc-dart/examples/helloworld $ cd grpc-dart/example/helloworld
``` ```
### Run the example ### Run the example