Skip to content

Commit

Permalink
Merge pull request bblimke#299 from tomykaira/fix_markup
Browse files Browse the repository at this point in the history
Fix wrong markup in README
  • Loading branch information
bblimke committed Aug 5, 2013
2 parents d1e3ed8 + 238db47 commit be0df72
Showing 1 changed file with 4 additions and 1 deletion.
5 changes: 4 additions & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -258,7 +258,10 @@ Net::HTTP.start("www.example.com") {|http| http.request(req)}.message # ===>

### Replaying raw responses recorded with `curl -is`

`curl -is www.example.com > /tmp/example_curl_-is_output.txt`
```
curl -is www.example.com > /tmp/example_curl_-is_output.txt
```

```ruby
raw_response_file = File.new("/tmp/example_curl_-is_output.txt")
```
Expand Down

0 comments on commit be0df72

Please sign in to comment.