From 319417f26d8897d0e1a3d350ff8989e04735c8d3 Mon Sep 17 00:00:00 2001 From: yhirose Date: Mon, 24 Feb 2020 21:50:07 -0500 Subject: [PATCH] Updated README --- README.md | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/README.md b/README.md index ab97b26..0708992 100644 --- a/README.md +++ b/README.md @@ -248,14 +248,13 @@ svr.set_expect_100_continue_handler([](const Request &req, Response &res) { Client Example -------------- -### GET - ```c++ #include #include int main(void) { + // IMPORTANT: 1st parameter must be a hostname or an IP adress string. httplib::Client cli("localhost", 1234); auto res = cli.Get("/hi");