diff --git a/std/net/curl.d b/std/net/curl.d index da4ec47e03c..ec7f066ee6b 100644 --- a/std/net/curl.d +++ b/std/net/curl.d @@ -2879,7 +2879,7 @@ struct HTTP /** The headers read from a successful response. * */ - @property string[string] responseHeaders() + @property string[string] responseHeaders() return { return p.headersIn; } @@ -2900,7 +2900,7 @@ struct HTTP HTTP status line of last response. One call to perform may result in several requests because of redirection. */ - @property StatusLine statusLine() + @property StatusLine statusLine() return { return p.status; } @@ -3527,7 +3527,7 @@ struct FTP } /// ditto - @property string encoding() + @property string encoding() return { return p.encoding; }