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",
"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"
]
}

View File

@ -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:

View File

@ -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