From 7357b8e647b845d66e0ecbdb69ac8a6a5183916e Mon Sep 17 00:00:00 2001 From: Eric Zhang Date: Fri, 11 Mar 2011 13:53:15 -0800 Subject: [PATCH] Edited user_manual.md via GitHub --- user_manual.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/user_manual.md b/user_manual.md index 856e64f..0f4b13c 100644 --- a/user_manual.md +++ b/user_manual.md @@ -10,7 +10,7 @@ Setup on the server ------------------- NowJS needs an instance of a node.js http server in order to communicate. If your application is already using an http server, NowJS can use the existing instance. Otherwise, you will need to create one. Here's an example server: - var yourHttpServer = require('http').createServer(function(req, response){ // Serve your static files }); + var yourHttpServer = require('http').createServer(function(req, response){ /* Serve your static files */ }); yourHttpServer.listen(8080); At the top of your code, place the following: