From ed4e14ebd1912ac66b868a3773e857ffffe5f675 Mon Sep 17 00:00:00 2001 From: Viktor Szakats Date: Fri, 1 Aug 2025 19:00:22 +0200 Subject: [PATCH] CURLOPT_POSTREDIR.md: drop stray dot added by mistake --- docs/libcurl/opts/CURLOPT_POSTREDIR.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/libcurl/opts/CURLOPT_POSTREDIR.md b/docs/libcurl/opts/CURLOPT_POSTREDIR.md index 6bb433a90b..efabddcefd 100644 --- a/docs/libcurl/opts/CURLOPT_POSTREDIR.md +++ b/docs/libcurl/opts/CURLOPT_POSTREDIR.md @@ -64,7 +64,7 @@ int main(void) curl_easy_setopt(curl, CURLOPT_POSTFIELDS, "data=true"); /* example.com is redirected, so we tell libcurl to send POST on 301, - 302 and 303 HTTP response codes. */ + 302 and 303 HTTP response codes */ curl_easy_setopt(curl, CURLOPT_POSTREDIR, CURL_REDIR_POST_ALL); curl_easy_perform(curl);