Remove duplicated word "to"

link issue #98
This commit is contained in:
xy 2019-11-06 17:46:23 +08:00 committed by GitHub
parent cceabf29ad
commit 0bb32e55f3
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 1 additions and 1 deletions

View File

@ -29,7 +29,7 @@ In the `app.js` you'll find a simple `express` application, which exposes a few
```js
const stateUrl = `http://localhost:${daprPort}/v1.0/state`;
```
When we use the Dapr CLI, it creates an environment variable for the Dapr port, which defaults to 3500. We'll be using this in step 3 when we POST messages to to our system.
When we use the Dapr CLI, it creates an environment variable for the Dapr port, which defaults to 3500. We'll be using this in step 3 when we POST messages to our system.
Next, let's take a look at the ```neworder``` handler: