mirror of https://github.com/dapr/docs.git
fix missing backslashes in shell-examples (#196)
This commit is contained in:
parent
4ae2e7d24a
commit
7ce5c97f49
|
@ -72,7 +72,7 @@ None.
|
||||||
### Example
|
### Example
|
||||||
```shell
|
```shell
|
||||||
curl -X POST http://localhost:3500/v1.0/state \
|
curl -X POST http://localhost:3500/v1.0/state \
|
||||||
-H "Content-Type: application/json"
|
-H "Content-Type: application/json" \
|
||||||
-d '[
|
-d '[
|
||||||
{
|
{
|
||||||
"key": "weapon",
|
"key": "weapon",
|
||||||
|
@ -226,7 +226,7 @@ The following is a sample *set* request with a complete operation option definit
|
||||||
|
|
||||||
```shell
|
```shell
|
||||||
curl -X POST http://localhost:3500/v1.0/state \
|
curl -X POST http://localhost:3500/v1.0/state \
|
||||||
-H "Content-Type: application/json"
|
-H "Content-Type: application/json" \
|
||||||
-d '[
|
-d '[
|
||||||
{
|
{
|
||||||
"key": "weapon",
|
"key": "weapon",
|
||||||
|
|
Loading…
Reference in New Issue