]> git.ipfire.org Git - thirdparty/curl.git/commitdiff
docs/TheArtOfHttpScripting: fix markdown links
authorRyan Beck-Buysse <rbuysse@gmail.com>
Wed, 19 May 2021 00:56:31 +0000 (19:56 -0500)
committerDaniel Stenberg <daniel@haxx.se>
Wed, 19 May 2021 07:10:11 +0000 (09:10 +0200)
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 #7097

docs/TheArtOfHttpScripting.md

index 90538a363c3bf6f84dff686b4602bed32bd0cb8d..5ba328269c55e1069a633f9ca44338432579ec11 100644 (file)
@@ -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:
 
@@ -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/