Skip to content

Commit

Permalink
Fixed a couple of README errors
Browse files Browse the repository at this point in the history
  • Loading branch information
mtesauro committed Feb 20, 2013
1 parent 8795ead commit 7fee7b9
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions README.asciidoc
Original file line number Diff line number Diff line change
Expand Up @@ -51,13 +51,13 @@ $ jerry-curl --url-path /uppercase/word -X GET

would result in the following curl command:

$ /usr/bin/curl --proxy 127.0.0.1:8080 -include -H "X-Auth-Token: 55555555-5555-5555-5555-555555555555" -H "Accept: application/json" -H "Content-Type: application/json" -X GET http://mtesauro.homelinux.org/uppercase/word
$ /usr/bin/curl --proxy 127.0.0.1:8080 -include -H "X-Auth-Token: 55555555-5555-5555-5555-555555555555" -H "Accept: application/json" -H "Content-Type: application/json" -X GET https://example.com/uppercase/word

$ jerry-curl --url-path /uppercase/word -X POST -d '{"word" : "example"}'

would result in the following curl command:

$ /usr/bin/curl --proxy 127.0.0.1:8080 -include -H X-Auth-Token: 55555555-5555-5555-5555-555555555555 -H Accept: application/json -H Content-Type: application/json -X POST -d '{"key" : "value"}' http://mtesauro.homelinux.org/uppercase/word
$ /usr/bin/curl --proxy 127.0.0.1:8080 -include -H X-Auth-Token: 55555555-5555-5555-5555-555555555555 -H Accept: application/json -H Content-Type: application/json -X POST -d '{"key" : "value"}' https://example.com/uppercase/word

=== License ===

Expand Down

0 comments on commit 7fee7b9

Please sign in to comment.