Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/nodejs/node.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
path: root/doc
diff options
context:
space:
mode:
authorShigeki Ohtsu <ohtsu@iij.ad.jp>2012-03-28 12:13:26 +0400
committerisaacs <i@izs.me>2012-03-29 07:13:28 +0400
commit26b6da134ff219a3ff14b0d540d19a911713856f (patch)
tree035666c16b88def2c6c56354fb8419f4e00e634f /doc
parent238e12af221cfefdfa560ac0e6e80b1d266f2870 (diff)
doc: change stability index of tty and readline to Unstable
Diffstat (limited to 'doc')
-rw-r--r--doc/api/readline.markdown2
-rw-r--r--doc/api/tty.markdown2
2 files changed, 2 insertions, 2 deletions
diff --git a/doc/api/readline.markdown b/doc/api/readline.markdown
index 7c9c00c1cf8..d66d8ed57ba 100644
--- a/doc/api/readline.markdown
+++ b/doc/api/readline.markdown
@@ -1,6 +1,6 @@
# Readline
- Stability: 3 - Stable
+ Stability: 2 - Unstable
To use this module, do `require('readline')`. Readline allows reading of a
stream (such as `process.stdin`) on a line-by-line basis.
diff --git a/doc/api/tty.markdown b/doc/api/tty.markdown
index 54c597732bd..57062945dc9 100644
--- a/doc/api/tty.markdown
+++ b/doc/api/tty.markdown
@@ -1,6 +1,6 @@
# TTY
- Stability: 3 - Stable
+ Stability: 2 - Unstable
The `tty` module houses the `tty.ReadStream` and `tty.WriteStream` classes. In
most cases, you will not need to use this module directly.