From 2bee136b167cbb846947cb5954ee537c45a7377a Mon Sep 17 00:00:00 2001 From: Daniel Stenberg Date: Thu, 28 Dec 2023 23:23:12 +0100 Subject: [PATCH] libcurl/options/info.md: fix typo --- libcurl/options/info.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/libcurl/options/info.md b/libcurl/options/info.md index 9429210790..6df26cdbc0 100644 --- a/libcurl/options/info.md +++ b/libcurl/options/info.md @@ -48,7 +48,7 @@ An application can ask libcurl for the name of the `CURLOPT_VERBOSE` option like this: const struct curl_easyoption *opt = - curl_easy_option_by_id(CURLOP_VERBOSE); + curl_easy_option_by_id(CURLOPT_VERBOSE); if(opt) { printf("This option has the name: %s\n", opt->name); }