summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorSam Roberts <vieuxtech@gmail.com>2013-06-11 16:49:56 -0700
committerBen Noordhuis <info@bnoordhuis.nl>2013-06-18 22:50:19 +0200
commit5fc8efb87d7cf0badd7801625ddae054d6aa0b0b (patch)
treef7ef5c50c0cac9ce11d0546d6c69eae88645f507
parent67cb80158ce194954d97bccf5f721a94e74aba7c (diff)
downloadnode-new-5fc8efb87d7cf0badd7801625ddae054d6aa0b0b.tar.gz
doc: call console module 'console' not 'stdio'
The console module has always been called 'stdio' in the table-of-contents, but nowhere else, since its name is 'console'. This makes it difficult to find. This is a back-port of commit 226a20d from the master branch.
-rw-r--r--doc/api/_toc.markdown2
-rw-r--r--doc/api/all.markdown2
-rw-r--r--doc/api/console.markdown (renamed from doc/api/stdio.markdown)0
-rw-r--r--doc/api/globals.markdown4
4 files changed, 4 insertions, 4 deletions
diff --git a/doc/api/_toc.markdown b/doc/api/_toc.markdown
index 9f658687e0..fb27adb709 100644
--- a/doc/api/_toc.markdown
+++ b/doc/api/_toc.markdown
@@ -5,6 +5,7 @@
* [C/C++ Addons](addons.html)
* [Child Processes](child_process.html)
* [Cluster](cluster.html)
+* [Console](console.html)
* [Crypto](crypto.html)
* [Debugger](debugger.html)
* [DNS](dns.html)
@@ -23,7 +24,6 @@
* [Query Strings](querystring.html)
* [Readline](readline.html)
* [REPL](repl.html)
-* [STDIO](stdio.html)
* [Stream](stream.html)
* [String Decoder](string_decoder.html)
* [Timers](timers.html)
diff --git a/doc/api/all.markdown b/doc/api/all.markdown
index 4e0dd81741..e51e546b6c 100644
--- a/doc/api/all.markdown
+++ b/doc/api/all.markdown
@@ -1,7 +1,7 @@
@include documentation
@include synopsis
@include globals
-@include stdio
+@include console
@include timers
@include modules
@include addons
diff --git a/doc/api/stdio.markdown b/doc/api/console.markdown
index e53902f7ad..e53902f7ad 100644
--- a/doc/api/stdio.markdown
+++ b/doc/api/console.markdown
diff --git a/doc/api/globals.markdown b/doc/api/globals.markdown
index 2f797be3e9..cd6a33d3a8 100644
--- a/doc/api/globals.markdown
+++ b/doc/api/globals.markdown
@@ -30,7 +30,7 @@ The process object. See the [process object][] section.
* {Object}
-Used to print to stdout and stderr. See the [stdio][] section.
+Used to print to stdout and stderr. See the [console][] section.
## Class: Buffer
@@ -185,5 +185,5 @@ The timer functions are global variables. See the [timers][] section.
[module system documentation]: modules.html
[Modules]: modules.html#modules_modules
[process object]: process.html#process_process
-[stdio]: stdio.html
+[console]: console.html
[timers]: timers.html