summary refs log tree commit diff stats
path: root/examples/curlex.nim
diff options
context:
space:
mode:
authorFlaviu Tamas <tamasflaviu@gmail.com>2015-01-09 22:59:16 -0500
committerFlaviu Tamas <tamasflaviu@gmail.com>2015-01-09 22:59:16 -0500
commit8b807adc08530c72122a97eea3c96b7b2f13d579 (patch)
tree21a67f2c3a485abea4907f4f96a76a2451c7408d /examples/curlex.nim
parentf2e717da2d44a184bc8ce7056391d975cb641e81 (diff)
downloadNim-8b807adc08530c72122a97eea3c96b7b2f13d579.tar.gz
s/nimrod/nim/g; s/babel/nimble/g
Diffstat (limited to 'examples/curlex.nim')
-rw-r--r--examples/curlex.nim2
1 files changed, 1 insertions, 1 deletions
diff --git a/examples/curlex.nim b/examples/curlex.nim
index 9dadd9a90..017956818 100644
--- a/examples/curlex.nim
+++ b/examples/curlex.nim
@@ -4,7 +4,7 @@ import
 var hCurl = easy_init()
 if hCurl != nil: 
   discard easy_setopt(hCurl, OPT_VERBOSE, true)
-  discard easy_setopt(hCurl, OPT_URL, "http://force7.de/nimrod")
+  discard easy_setopt(hCurl, OPT_URL, "http://nim-lang.org/")
   discard easy_perform(hCurl)
   easy_cleanup(hCurl)