diff options
author | Juan Carlos <juancarlospaco@gmail.com> | 2019-02-10 04:53:38 -0300 |
---|---|---|
committer | Andreas Rumpf <rumpf_a@web.de> | 2019-02-10 08:53:38 +0100 |
commit | b73ee96641bc89dd1a98db327179b37c1bd44a8b (patch) | |
tree | 075109b10fefeadae0c73bea282e718609d0955e /lib | |
parent | 0c9a3d48042fc28978dd01020e3a759a55b0e04c (diff) | |
download | Nim-b73ee96641bc89dd1a98db327179b37c1bd44a8b.tar.gz |
Fixes #10357 (#10618)
Diffstat (limited to 'lib')
-rw-r--r-- | lib/pure/httpclient.nim | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/pure/httpclient.nim b/lib/pure/httpclient.nim index e5c0c6ac4..7cae86580 100644 --- a/lib/pure/httpclient.nim +++ b/lib/pure/httpclient.nim @@ -551,7 +551,7 @@ type headers*: HttpHeaders ## Headers to send in requests. maxRedirects: int userAgent: string - timeout: int ## Only used for blocking HttpClient for now. + timeout*: int ## Only used for blocking HttpClient for now. proxy: Proxy ## ``nil`` or the callback to call when request progress changes. when SocketType is Socket: |