From 88e2eb2a490495f12d3d3586edb6fb2f5f626e70 Mon Sep 17 00:00:00 2001 From: "Sergio R. Caprile" Date: Tue, 24 Jan 2023 11:31:25 -0300 Subject: [PATCH] Revert "fix the doc error: htts to https" --- docs/README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/README.md b/docs/README.md index 74de0ebc..726189a2 100644 --- a/docs/README.md +++ b/docs/README.md @@ -3821,7 +3821,7 @@ isn't default port for URL protocol Usage example: ```c -unsigned short port1 = mg_url_port("https://myhost.com") // port1 is now 443 (default https port) +unsigned short port1 = mg_url_port("htts://myhost.com") // port1 is now 443 (default https port) unsigned short port2 = mg_url_port("127.0.0.1:567") // port2 is now 567 ```