Revert "fix the doc error: htts to https"

This commit is contained in:
Sergio R. Caprile 2023-01-24 11:31:25 -03:00 committed by GitHub
parent e635d5f748
commit 88e2eb2a49
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -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
```