From 9104054ca56a712377ceb238d63fcab49e389e68 Mon Sep 17 00:00:00 2001 From: yhirose Date: Mon, 27 Jan 2025 13:37:16 -0500 Subject: [PATCH] Fix README example --- README.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/README.md b/README.md index eea79d9..dc2d9c5 100644 --- a/README.md +++ b/README.md @@ -39,10 +39,10 @@ svr.listen("0.0.0.0", 8080); #include "path/to/httplib.h" // HTTP -httplib::Client cli("http://yhirose.github.io/hi"); +httplib::Client cli("http://yhirose.github.io"); // HTTPS -httplib::Client cli("https://yhirose.github.io/hi"); +httplib::Client cli("https://yhirose.github.io"); auto res = cli.Get("/hi"); res->status;