Browse Source

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.
v0.11.3-release
Sam Roberts 12 years ago
committed by Ben Noordhuis
parent
commit
226a20da5d
  1. 2
      doc/api/_toc.markdown
  2. 2
      doc/api/all.markdown
  3. 0
      doc/api/console.markdown
  4. 4
      doc/api/globals.markdown

2
doc/api/_toc.markdown

@ -5,6 +5,7 @@
* [C/C++ Addons](addons.html) * [C/C++ Addons](addons.html)
* [Child Processes](child_process.html) * [Child Processes](child_process.html)
* [Cluster](cluster.html) * [Cluster](cluster.html)
* [Console](console.html)
* [Crypto](crypto.html) * [Crypto](crypto.html)
* [Debugger](debugger.html) * [Debugger](debugger.html)
* [DNS](dns.html) * [DNS](dns.html)
@ -23,7 +24,6 @@
* [Query Strings](querystring.html) * [Query Strings](querystring.html)
* [Readline](readline.html) * [Readline](readline.html)
* [REPL](repl.html) * [REPL](repl.html)
* [STDIO](stdio.html)
* [Stream](stream.html) * [Stream](stream.html)
* [String Decoder](string_decoder.html) * [String Decoder](string_decoder.html)
* [Timers](timers.html) * [Timers](timers.html)

2
doc/api/all.markdown

@ -1,7 +1,7 @@
@include documentation @include documentation
@include synopsis @include synopsis
@include globals @include globals
@include stdio @include console
@include timers @include timers
@include modules @include modules
@include addons @include addons

0
doc/api/stdio.markdown → doc/api/console.markdown

4
doc/api/globals.markdown

@ -30,7 +30,7 @@ The process object. See the [process object][] section.
* {Object} * {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 ## Class: Buffer
@ -185,5 +185,5 @@ The timer functions are global variables. See the [timers][] section.
[module system documentation]: modules.html [module system documentation]: modules.html
[Modules]: modules.html#modules_modules [Modules]: modules.html#modules_modules
[process object]: process.html#process_process [process object]: process.html#process_process
[stdio]: stdio.html [console]: console.html
[timers]: timers.html [timers]: timers.html

Loading…
Cancel
Save