Skip to content

Commit 3892d74

Browse files
authored
Update Quickstart.md
1 parent 238651f commit 3892d74

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

docs/source/Quickstart.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -39,7 +39,7 @@ With <10 lines of code, we succesfully mapped the shell command `echo` to the en
3939
This section demonstrates how we can now call/ execute commands over HTTP that we just mapped in the [example](#example-program) above.
4040

4141
```bash
42-
$ curl -X POST -d '{"args": ["Hello", "World!"]}' http://localhost:4000/commands/saythis
42+
$ curl -X POST -H 'Content-Type: application/json' -d '{"args": ["Hello", "World!"]}' http://localhost:4000/commands/saythis
4343
```
4444

4545
<details><summary>or using python's requests module,</summary>
@@ -81,4 +81,4 @@ Returns result in JSON,
8181
"start_time": 1593019807.7754705,
8282
"status": "success"
8383
}
84-
```
84+
```

0 commit comments

Comments
 (0)