remove trailing whitespace

This commit is contained in:
John Colvin 2023-03-02 14:00:12 +00:00
parent cc416c9848
commit 251cb73f71
38 changed files with 307 additions and 307 deletions

2
http.d
View file

@ -186,7 +186,7 @@ HttpResponse httpRequest(string method, string uri, const(ubyte)[] content = nul
of the parameters are the caller's responsibility. Content-Length is added automatically,
but YOU must give Content-Type!
*/
HttpResponse doHttpRequestOnHelpers(void delegate(string) write, char[] delegate() read, string method, string uri, const(ubyte)[] content = null, string[string] cookies = null, string[] headers = null, bool https = false)
HttpResponse doHttpRequestOnHelpers(void delegate(string) write, char[] delegate() read, string method, string uri, const(ubyte)[] content = null, string[string] cookies = null, string[] headers = null, bool https = false)
in {
assert(method == "POST" || method == "GET");
}