diff options
author | Timothee Cour <timothee.cour2@gmail.com> | 2020-09-18 15:20:41 -0700 |
---|---|---|
committer | GitHub <noreply@github.com> | 2020-09-19 00:20:41 +0200 |
commit | 8ae4a774b77d492f997f72d36cc3b8705bc080af (patch) | |
tree | 248885208d62f74f48ea01c0b147a27ad8ea4845 | |
parent | ae1f5c15593be8137812137d315bb8d367dfac9f (diff) | |
download | Nim-8ae4a774b77d492f997f72d36cc3b8705bc080af.tar.gz |
doc fix typo in lib/pure/httpclient.nim (#15364)
-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 a590bd83a..533bf3c15 100644 --- a/lib/pure/httpclient.nim +++ b/lib/pure/httpclient.nim @@ -17,7 +17,7 @@ ## ``http://google.com``: ## ## .. code-block:: Nim -## import httpClient +## import httpclient ## var client = newHttpClient() ## echo client.getContent("http://google.com") ## |