diff options
author | Araq <rumpf_a@web.de> | 2014-08-28 09:59:26 +0200 |
---|---|---|
committer | Araq <rumpf_a@web.de> | 2014-08-28 09:59:26 +0200 |
commit | 4523b29d7af0ac88754eec29981306022a0d642b (patch) | |
tree | 3fb1e5a473c1694accc1ccb215726459d4f721f1 /lib/pure/httpclient.nim | |
parent | d05df2173b95155a53e9c731f1c78b754eb2410c (diff) | |
download | Nim-4523b29d7af0ac88754eec29981306022a0d642b.tar.gz |
Nimrod renamed to Nim
Diffstat (limited to 'lib/pure/httpclient.nim')
-rw-r--r-- | lib/pure/httpclient.nim | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/lib/pure/httpclient.nim b/lib/pure/httpclient.nim index 3fbb04fc8..a0e8c6b05 100644 --- a/lib/pure/httpclient.nim +++ b/lib/pure/httpclient.nim @@ -656,17 +656,17 @@ when isMainModule: resp = await client.request("http://picheta.me/aboutme.html") echo("Got response: ", resp.status) - resp = await client.request("http://nimrod-lang.org/") + resp = await client.request("http://nim-lang.org/") echo("Got response: ", resp.status) - resp = await client.request("http://nimrod-lang.org/download.html") + resp = await client.request("http://nim-lang.org/download.html") echo("Got response: ", resp.status) asyncCheck main() runForever() else: - #downloadFile("http://force7.de/nimrod/index.html", "nimrodindex.html") + #downloadFile("http://force7.de/nim/index.html", "nimindex.html") #downloadFile("http://www.httpwatch.com/", "ChunkTest.html") #downloadFile("http://validator.w3.org/check?uri=http%3A%2F%2Fgoogle.com", # "validator.html") |