summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorRyan Beck-Buysse <rbuysse@gmail.com>2021-05-18 19:56:31 -0500
committerDaniel Stenberg <daniel@haxx.se>2021-05-19 09:10:11 +0200
commitd845d392b5ada2259da6d48062dd309045efd3ab (patch)
tree0d7d6a0f9004722585dde4c6103d9e7055ec2ee5
parent3b3459eed8af4ec6fa9cfebd497e30dd98933cf9 (diff)
downloadcurl-d845d392b5ada2259da6d48062dd309045efd3ab.tar.gz
docs/TheArtOfHttpScripting: fix markdown links
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
-rw-r--r--docs/TheArtOfHttpScripting.md4
1 files changed, 2 insertions, 2 deletions
diff --git a/docs/TheArtOfHttpScripting.md b/docs/TheArtOfHttpScripting.md
index 90538a363..5ba328269 100644
--- a/docs/TheArtOfHttpScripting.md
+++ b/docs/TheArtOfHttpScripting.md
@@ -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/