doc: fix links in socket.connecting

PR-URL: https://github.com/nodejs/node/pull/6657
Reviewed-By: Roman Reiss <me@silverwind.io>
Reviewed-By: James M Snell <jasnell@gmail.com>
This commit is contained in:
Kirill Fomichev 2016-05-09 20:15:14 +03:00 committed by James M Snell
parent b55becd0dc
commit ffc708daad

View File

@ -400,14 +400,14 @@ The `connectListener` parameter will be added as a listener for the
### socket.connect(path[, connectListener])
### socket.connect(port[, host][, connectListener])
As [`socket.connect(options\[, connectListener\])`][`socket.connect(options, connectListener)`],
As [`socket.connect(options[, connectListener])`][`socket.connect(options, connectListener)`],
with options either as either `{port: port, host: host}` or `{path: path}`.
### socket.connecting
If `true` - [`socket.connect(options\[, connectListener\])`][] was called and
If `true` - [`socket.connect(options[, connectListener])`][`socket.connect(options, connectListener)`] was called and
haven't yet finished. Will be set to `false` before emitting `connect` event
and/or calling [`socket.connect(options\[, connectListener\])`][]'s callback.
and/or calling [`socket.connect(options[, connectListener])`][`socket.connect(options, connectListener)`]'s callback.
### socket.destroy()