diff options
author | Federico Ceratto <federico.ceratto@gmail.com> | 2018-06-23 14:32:24 +0100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2018-06-23 14:32:24 +0100 |
commit | 059ddeee10a7b6e3805891b68205e01c045e038d (patch) | |
tree | 39d3f5d2e41a1c97220b9a8f2ed5160198d60f44 | |
parent | 371f87e9626ce84a55b3d8e1aa1bc3a97ebcc91b (diff) | |
download | Nim-059ddeee10a7b6e3805891b68205e01c045e038d.tar.gz |
Minor doc fix
-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 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. ## |