From cefb5a88226bf832c9219fea7349e839094c1606 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Renato=20Foot=20Guimar=C3=A3es=20Costallat?= Date: Fri, 8 Dec 2023 01:21:59 -0300 Subject: [PATCH] Update README.md (#1731) Fix "With Progress Callback" code example --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index a0b183a..4724892 100644 --- a/README.md +++ b/README.md @@ -662,7 +662,7 @@ auto res = cli.Post( ### With Progress Callback ```cpp -httplib::Client client(url, port); +httplib::Client cli(url, port); // prints: 0 / 000 bytes => 50% complete auto res = cli.Get("/", [](uint64_t len, uint64_t total) {