diff options
author | Abimanyu Raja <abimanyuraja@gmail.com> | 2011-08-28 15:06:40 -0700 |
---|---|---|
committer | Ben Noordhuis <info@bnoordhuis.nl> | 2011-08-29 21:26:58 +0200 |
commit | b5144b245b2b82ca430074da6bbbf2c848f19787 (patch) | |
tree | fd66efcb5ba996d4b6367366685d302341c3573e /src | |
parent | 7c87e092fb97ab293e19b21a8b07f622c80c68b3 (diff) | |
download | nodejs-b5144b245b2b82ca430074da6bbbf2c848f19787.tar.gz nodejs-b5144b245b2b82ca430074da6bbbf2c848f19787.tar.bz2 nodejs-b5144b245b2b82ca430074da6bbbf2c848f19787.zip |
stdio: fix typo in doc comment
Diffstat (limited to 'src')
-rw-r--r-- | src/node_stdio.cc | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/node_stdio.cc b/src/node_stdio.cc index 2668bb031..8a8c0b261 100644 --- a/src/node_stdio.cc +++ b/src/node_stdio.cc @@ -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. |