mirror of https://github.com/grpc/grpc.io.git
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:
parent
eb255fc0b9
commit
5736ec4375
|
|
@ -4,13 +4,16 @@
|
||||||
// Workspace dictionary:
|
// Workspace dictionary:
|
||||||
"words": [
|
"words": [
|
||||||
"protoc",
|
"protoc",
|
||||||
"RPCs"
|
"RPCs",
|
||||||
|
"SDKs"
|
||||||
],
|
],
|
||||||
"flagWords": [],
|
"flagWords": [],
|
||||||
"ignoreWords": [
|
"ignoreWords": [
|
||||||
"codegen",
|
"codegen",
|
||||||
"grpc",
|
"grpc",
|
||||||
|
"helloworld",
|
||||||
"proto",
|
"proto",
|
||||||
|
"protobuf",
|
||||||
"protos",
|
"protos",
|
||||||
"routeguide"
|
"routeguide"
|
||||||
]
|
]
|
||||||
|
|
|
||||||
|
|
@ -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:
|
||||||
|
|
|
||||||
|
|
@ -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
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue