Skip to content
This repository has been archived by the owner on Apr 22, 2023. It is now read-only.

Commit

Permalink
See the <doc> section are now links to <doc>
Browse files Browse the repository at this point in the history
Closes GH-839.
  • Loading branch information
DTrejo authored and ry committed Mar 28, 2011
1 parent 978a50c commit 6788ad4
Show file tree
Hide file tree
Showing 4 changed files with 9 additions and 9 deletions.
4 changes: 2 additions & 2 deletions doc/api/fs.markdown
Expand Up @@ -82,7 +82,7 @@ Synchronous chmod(2).
### fs.stat(path, [callback])

Asynchronous stat(2). The callback gets two arguments `(err, stats)` where
`stats` is a `fs.Stats` object. It looks like this:
`stats` is a [`fs.Stats`](#fs.Stats) object. It looks like this:

{ dev: 2049,
ino: 305352,
Expand All @@ -98,7 +98,7 @@ Asynchronous stat(2). The callback gets two arguments `(err, stats)` where
mtime: '2009-06-29T11:11:40Z',
ctime: '2009-06-29T11:11:40Z' }

See the `fs.Stats` section below for more information.
See the [fs.Stats](#fs.Stats) section below for more information.

### fs.lstat(path, [callback])

Expand Down
4 changes: 2 additions & 2 deletions doc/api/globals.markdown
Expand Up @@ -13,11 +13,11 @@ scope; `var something` inside a Node module will be local to that module.

### process

The process object. See the 'process object' section.
The process object. See the [process object](process.html#process) section.

### require()

To require modules. See the 'Modules' section.
To require modules. See the [Modules](modules.html#modules) section.

### require.resolve()

Expand Down
6 changes: 3 additions & 3 deletions doc/api/http.markdown
Expand Up @@ -241,7 +241,7 @@ passed as the second parameter to the `'request'` event. It is a `Writable Strea
### response.writeContinue()

Sends a HTTP/1.1 100 Continue message to the client, indicating that
the request body should be sent. See the the `checkContinue` event on
the request body should be sent. See the [checkContinue](#event_checkContinue_) event on
`Server`.

### response.writeHead(statusCode, [reasonPhrase], [headers])
Expand Down Expand Up @@ -458,7 +458,7 @@ Emitted each time a server responds to a request with an upgrade. If this event
isn't being listened for, clients receiving an upgrade header will have their
connections closed.

See the description of the `upgrade` event for `http.Server` for further details.
See the description of the [upgrade event](http.html#event_upgrade_) for `http.Server` for further details.

### Event: 'continue'

Expand All @@ -485,7 +485,7 @@ A queue of requests waiting to be sent to sockets.
## http.ClientRequest

This object is created internally and returned from `http.request()`. It
represents an _in-progress_ request whose header has already been queued. The
represents an _in-progress_ request whose header has already been queued. The
header is still mutable using the `setHeader(name, value)`, `getHeader(name)`,
`removeHeader(name)` API. The actual header will be sent along with the first
data chunk or when closing the connection.
Expand Down
4 changes: 2 additions & 2 deletions doc/api/net.markdown
Expand Up @@ -226,7 +226,7 @@ received.
#### socket.setSecure()

This function has been removed in v0.3. It used to upgrade the connection to
SSL/TLS. See the TLS for the new API.
SSL/TLS. See the [TLS section](tls.html#tLS_) for the new API.


#### socket.write(data, [encoding], [callback])
Expand Down Expand Up @@ -319,7 +319,7 @@ See `connect()`.

Emitted when data is received. The argument `data` will be a `Buffer` or
`String`. Encoding of data is set by `socket.setEncoding()`.
(See the section on `Readable Socket` for more information.)
(See the [Readable Stream](streams.html#readable_Stream) section for more information.)

#### Event: 'end'

Expand Down

0 comments on commit 6788ad4

Please sign in to comment.