doc: call console module 'console' not 'stdio'
authorSam Roberts <vieuxtech@gmail.com>
Tue, 11 Jun 2013 23:49:56 +0000 (16:49 -0700)
committerBen Noordhuis <info@bnoordhuis.nl>
Tue, 18 Jun 2013 20:50:19 +0000 (22:50 +0200)
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.

doc/api/_toc.markdown
doc/api/all.markdown
doc/api/console.markdown [moved from doc/api/stdio.markdown with 100% similarity]
doc/api/globals.markdown

index 9f65868..fb27adb 100644 (file)
@@ -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)
index 4e0dd81..e51e546 100644 (file)
@@ -1,7 +1,7 @@
 @include documentation
 @include synopsis
 @include globals
-@include stdio
+@include console
 @include timers
 @include modules
 @include addons
index 2f797be..cd6a33d 100644 (file)
@@ -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