summary refs log tree commit diff stats
path: root/examples/cgi/example.nim
diff options
context:
space:
mode:
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>")