Skip to content
This repository has been archived by the owner on Apr 22, 2023. It is now read-only.

Commit

Permalink
Fixes #1635. Fixed typo
Browse files Browse the repository at this point in the history
  • Loading branch information
mjackson authored and ry committed Sep 2, 2011
1 parent 1976288 commit 3bf20e4
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion doc/api/readline.markdown
Expand Up @@ -9,7 +9,7 @@ to allow your program to gracefully terminate:

var rl = require('readline');

var i = rl.createInterface(process.sdtin, process.stdout, null);
var i = rl.createInterface(process.stdin, process.stdout, null);
i.question("What do you think of node.js?", function(answer) {
// TODO: Log the answer in a database
console.log("Thank you for your valuable feedback.");
Expand Down

0 comments on commit 3bf20e4

Please sign in to comment.