summary refs log tree commit diff stats
diff options
context:
space:
mode:
authorJuan Carlos <juancarlospaco@gmail.com>2019-02-10 04:53:38 -0300
committerAndreas Rumpf <rumpf_a@web.de>2019-02-13 23:30:14 +0100
commitdcbab1031ace9ab33ebde3b293a5b6f2fc85eab0 (patch)
tree46112deba4995c6898a006af18b4e3e0f7c1c493
parentfe26328a196a3c426f059a36660cccf1a86928b7 (diff)
downloadNim-dcbab1031ace9ab33ebde3b293a5b6f2fc85eab0.tar.gz
Fixes #10357 (#10618)
-rw-r--r--lib/pure/httpclient.nim2
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: