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

Fixed typo #1635

Closed
wants to merge 1 commit into from
Closed
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion doc/api/readline.markdown
Original file line number Diff line number Diff line change
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