summary refs log tree commit diff stats
diff options
context:
space:
mode:
authorAndreas Rumpf <rumpf_a@web.de>2018-06-24 09:52:45 +0200
committerGitHub <noreply@github.com>2018-06-24 09:52:45 +0200
commitfbac233dae61016166dd4dce922559479c45e5b1 (patch)
tree39d3f5d2e41a1c97220b9a8f2ed5160198d60f44
parent371f87e9626ce84a55b3d8e1aa1bc3a97ebcc91b (diff)
parent059ddeee10a7b6e3805891b68205e01c045e038d (diff)
downloadNim-fbac233dae61016166dd4dce922559479c45e5b1.tar.gz
Merge pull request #8092 from FedericoCeratto/patch-10
Minor doc fix
-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 8530e4c42..8b4fb0f8c 100644
--- a/lib/pure/httpclient.nim
+++ b/lib/pure/httpclient.nim
@@ -1184,7 +1184,7 @@ proc request*(client: HttpClient | AsyncHttpClient, url: string,
   ## Connects to the hostname specified by the URL and performs a request
   ## using the custom method string specified by ``httpMethod``.
   ##
-  ## Connection will kept alive. Further requests on the same ``client`` to
+  ## Connection will be kept alive. Further requests on the same ``client`` to
   ## the same hostname will not require a new connection to be made. The
   ## connection can be closed by using the ``close`` procedure.
   ##