Skip to content

Commit

Permalink
doc: call console module 'console' not 'stdio'
Browse files Browse the repository at this point in the history
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.
  • Loading branch information
sam-github authored and bnoordhuis committed Jun 17, 2013
1 parent c0281f1 commit 226a20d
Show file tree
Hide file tree
Showing 4 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion doc/api/_toc.markdown
Original file line number Diff line number Diff line change
Expand Up @@ -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)
Expand All @@ -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)
Expand Down
2 changes: 1 addition & 1 deletion doc/api/all.markdown
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
@include documentation
@include synopsis
@include globals
@include stdio
@include console
@include timers
@include modules
@include addons
Expand Down
File renamed without changes.
4 changes: 2 additions & 2 deletions doc/api/globals.markdown
Original file line number Diff line number Diff line change
Expand Up @@ -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

Expand Down Expand Up @@ -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

0 comments on commit 226a20d

Please sign in to comment.