Skip to content

Commit

Permalink
docs/TheArtOfHttpScripting: fix markdown links
Browse files Browse the repository at this point in the history
extra parens cause the links to be incorrectly formatted
and inconsistent with the rest of the document.

Signed-off-by: Ryan Beck-Buysse <rbuysse@gmail.com>
Closes curl#7097
  • Loading branch information
rbuysse authored and bagder committed May 19, 2021
1 parent 3b3459e commit d845d39
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions docs/TheArtOfHttpScripting.md
Original file line number Diff line number Diff line change
Expand Up @@ -47,7 +47,7 @@

Sometimes even `--verbose` is not enough. Then
[`--trace`](https://curl.se/docs/manpage.html#-trace) and
[`--trace-ascii`]((https://curl.se/docs/manpage.html#--trace-ascii)
[`--trace-ascii`](https://curl.se/docs/manpage.html#--trace-ascii)
offer even more details as they show **everything** curl sends and
receives. Use it like this:

Expand All @@ -58,7 +58,7 @@
Many times you may wonder what exactly is taking all the time, or you just
want to know the amount of milliseconds between two points in a transfer. For
those, and other similar situations, the
[`--trace-time`]((https://curl.se/docs/manpage.html#--trace-time) option
[`--trace-time`](https://curl.se/docs/manpage.html#--trace-time) option
is what you need. It'll prepend the time to each trace output line:

curl --trace-ascii d.txt --trace-time http://example.com/
Expand Down

0 comments on commit d845d39

Please sign in to comment.