From b5144b245b2b82ca430074da6bbbf2c848f19787 Mon Sep 17 00:00:00 2001 From: Abimanyu Raja Date: Sun, 28 Aug 2011 15:06:40 -0700 Subject: [PATCH] stdio: fix typo in doc comment --- src/node_stdio.cc | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/node_stdio.cc b/src/node_stdio.cc index 2668bb03101..8a8c0b2611d 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.