From 4ce9cdfd7338b1ddc8d2d60475031753b3fa430f Mon Sep 17 00:00:00 2001 From: "Adam D. Ruppe" Date: Tue, 20 May 2025 10:12:07 -0400 Subject: [PATCH] doc --- cgi.d | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/cgi.d b/cgi.d index 0af9f25..72cebbe 100644 --- a/cgi.d +++ b/cgi.d @@ -3132,7 +3132,7 @@ struct Uri { string scheme; /// e.g. "http" in "http://example.com/" string userinfo; /// the username (and possibly a password) in the uri - string host; /// the domain name + string host; /// the domain name. note it may be an ip address or have percent encoding too. int port; /// port number, if given. Will be zero if a port was not explicitly given string path; /// e.g. "/folder/file.html" in "http://example.com/folder/file.html" string query; /// the stuff after the ? in a uri