From 710c1184a3f6aca8c262dab67209d5b1e09d36e8 Mon Sep 17 00:00:00 2001 From: Araq Date: Mon, 12 Mar 2018 08:59:04 +0100 Subject: [PATCH] fixes httpclient documentation comment --- lib/pure/httpclient.nim | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/pure/httpclient.nim b/lib/pure/httpclient.nim index 648481ca52..568e453bd9 100644 --- a/lib/pure/httpclient.nim +++ b/lib/pure/httpclient.nim @@ -622,7 +622,7 @@ proc get*(url: string, extraHeaders = "", maxRedirects = 5, ## | An optional timeout can be specified in milliseconds, if reading from the ## server takes longer than specified an ETimeout exception will be raised. ## - ## ## **Deprecated since version 0.15.0**: use ``HttpClient.get`` instead. + ## **Deprecated since version 0.15.0**: use ``HttpClient.get`` instead. result = request(url, httpGET, extraHeaders, "", sslContext, timeout, userAgent, proxy) var lastURL = url