summary refs log tree commit diff stats
path: root/examples/cgi/example.nim
diff options
context:
space:
mode:
authorpatrick dw <algorithicimperative@gmail.com>2015-06-19 01:38:31 -0500
committerpatrick dw <algorithicimperative@gmail.com>2015-06-19 01:38:31 -0500
commit4e275f2a1a1995d6b7a2bc461b96d804368c0931 (patch)
treedc2e14a29c01c51627c9a91231a2df4333968cd1 /examples/cgi/example.nim
parentf71eaf66be35b2f4e7c12ebbb16ec301564bb0ab (diff)
downloadNim-4e275f2a1a1995d6b7a2bc461b96d804368c0931.tar.gz
renamed writeln to writeLine in examples
Diffstat (limited to 'examples/cgi/example.nim')
-rw-r--r--examples/cgi/example.nim2
1 files changed, 1 insertions, 1 deletions
diff --git a/examples/cgi/example.nim b/examples/cgi/example.nim
index 17629982a..761197cdb 100644
--- a/examples/cgi/example.nim
+++ b/examples/cgi/example.nim
@@ -4,4 +4,4 @@ write(stdout, "Content-type: text/html\n\n")
 write(stdout, "<!DOCTYPE HTML PUBLIC \"-//W3C//DTD HTML 4.01//EN\">\n")
 write(stdout, "<html><head><title>Test</title></head><body>\n")
 write(stdout, "Hello!")
-writeln(stdout, "</body></html>")
+writeLine(stdout, "</body></html>")