docs: typos and minor edits in several modules
authorThomas Shinnick <tshinnic@gmail.com>
Wed, 31 Aug 2011 13:12:34 +0000 (08:12 -0500)
committerBen Noordhuis <info@bnoordhuis.nl>
Tue, 6 Sep 2011 16:19:41 +0000 (18:19 +0200)
commit4cf0ce5bb4c20ed7e145785988d9be56671a0c69
tree44a31d660ddf2877da20736f015281b056be1a4e
parentfb93ab4125362271d9e5eda07179cb725b90779d
docs: typos and minor edits in several modules

Mostly quite minor edits.  Those possibly of more interest are:

  emitter.setMaxListeners(n)

    That the limit is per event name for an emitter.

  fs.readlink()

    Not a path, but rather the symbolic link's string value, which
      would be at best a partial path, certainly not a 'resolvedPath'

  global.__filename

    This may be "well-known" but this is a full path to the module
    that referencing code is running in.  It is not the main program's
    path, unless you are in the main program.  Each module knows only
    its own path.

  server.listen(port,...)

    I actually needed this functionality... "gimme just _any_ next port"

  stream.end()
  stream.destroy()

    Yeah, everybody knows what happens to the queued data, but let's
    make it *really* explicit for the first readers.
doc/api/events.markdown
doc/api/fs.markdown
doc/api/globals.markdown
doc/api/http.markdown
doc/api/net.markdown
doc/api/path.markdown
doc/api/stdio.markdown
doc/api/streams.markdown
doc/api/timers.markdown