From 4a6bb378d4fff9ed81211f4d6c77f1d3e2533fc5 Mon Sep 17 00:00:00 2001 From: Vse Mozhet Byt Date: Thu, 6 Apr 2017 02:44:02 +0300 Subject: [PATCH] doc: fix confusing reference in net.md PR-URL: https://github.com/nodejs/node/pull/12247 Reviewed-By: Rich Trott Reviewed-By: James M Snell Reviewed-By: Colin Ihrig Reviewed-By: Sam Roberts Reviewed-By: Luigi Pinca Reviewed-By: Alexey Orlenko --- doc/api/net.md | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/doc/api/net.md b/doc/api/net.md index 3465ece47be9c0..462835d6376134 100644 --- a/doc/api/net.md +++ b/doc/api/net.md @@ -793,7 +793,8 @@ Passing `timeout` as an option will call [`socket.setTimeout()`][] after the soc The `connectListener` parameter will be added as a listener for the [`'connect'`][] event once. -Here is an example of a client of the previously described echo server: +Following is an example of a client of the echo server described +in the [`net.createServer()`][] section: ```js const net = require('net');