Skip to content

Commit

Permalink
Improve curl command consistency
Browse files Browse the repository at this point in the history
  • Loading branch information
pickfire committed May 17, 2019
1 parent d64d063 commit 4531977
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions tide-compression/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -11,6 +11,6 @@ __Simple Example__
You can test the simple example by running `cargo run --example simple` while in this crate's directory, and then running either of the following commands:

```console
$ curl http://127.0.0.1:8000/ -v
$ echo 'why hello there' | gzip | curl -v --compressed -H 'Content-Encoding: gzip' 'http://127.0.0.1:8000/echo' --data-binary @-
$ curl -v http://127.0.0.1:8000/
$ echo 'why hello there' | gzip | curl -v --compressed -H 'Content-Encoding: gzip' http://127.0.0.1:8000/echo --data-binary @-
```

0 comments on commit 4531977

Please sign in to comment.