stdio: fix typo in doc comment

pull/5370/head
Abimanyu Raja 2011-08-28 15:06:40 -07:00 committed by Ben Noordhuis
parent 7c87e092fb
commit b5144b245b
1 changed files with 1 additions and 1 deletions

View File

@ -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.