summaryrefslogtreecommitdiff
path: root/doc/api/synopsis.markdown
diff options
context:
space:
mode:
Diffstat (limited to 'doc/api/synopsis.markdown')
-rw-r--r--doc/api/synopsis.markdown6
1 files changed, 3 insertions, 3 deletions
diff --git a/doc/api/synopsis.markdown b/doc/api/synopsis.markdown
index 10f4f02135..352b543cd2 100644
--- a/doc/api/synopsis.markdown
+++ b/doc/api/synopsis.markdown
@@ -2,7 +2,7 @@
<!--type=misc-->
-An example of a [web server](http.html) written with io.js which responds with
+An example of a [web server](http.html) written with node.js which responds with
'Hello World':
var http = require('http');
@@ -15,9 +15,9 @@ An example of a [web server](http.html) written with io.js which responds with
console.log('Server running at http://127.0.0.1:8124/');
To run the server, put the code into a file called `example.js` and execute
-it with the iojs program
+it with the node program
- > iojs example.js
+ > node example.js
Server running at http://127.0.0.1:8124/
All of the examples in the documentation can be run similarly.