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

Commit

Permalink
stdio: fix typo in doc comment
Browse files Browse the repository at this point in the history
  • Loading branch information
abi authored and bnoordhuis committed Aug 29, 2011
1 parent 7c87e09 commit b5144b2
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/node_stdio.cc
Expand Up @@ -67,7 +67,7 @@ static int EnableRawMode(int fd) {
raw.c_oflag |= (ONLCR);
/* control modes - set 8 bit chars */
raw.c_cflag |= (CS8);
/* local modes - choing off, canonical off, no extended functions,
/* local modes - echoing off, canonical off, no extended functions,
* no signal chars (^Z,^C) */
raw.c_lflag &= ~(ECHO | ICANON | IEXTEN | ISIG);
/* control chars - set return condition: min number of bytes and timer.
Expand Down

0 comments on commit b5144b2

Please sign in to comment.