From f0a33d99ec4656b87bebb97162837047b52eb6f8 Mon Sep 17 00:00:00 2001 From: Rich Trott Date: Mon, 23 Mar 2020 23:04:38 -0700 Subject: [PATCH] doc: simplify and correct example descriptions in net.md Instead of indicating that examples show lines to change in previous examples, present the examples as standalone items. They suffice on their own. In the first of these, it says to change "the second line" of a previous example, but if it were literally changed to the provided line, it would result in a syntax error. In the second of these, it gives the wrong line to change. All of this is unnecessary and probably makes the examples harder to follow. So simplify and treat each one as a separate example. PR-URL: https://github.com/nodejs/node/pull/32451 Reviewed-By: Anna Henningsen Reviewed-By: Trivikram Kamat Reviewed-By: James M Snell --- doc/api/net.md | 6 ++---- 1 file changed, 2 insertions(+), 4 deletions(-) diff --git a/doc/api/net.md b/doc/api/net.md index ea0b9139fd33f1..a7b6eff6008136 100644 --- a/doc/api/net.md +++ b/doc/api/net.md @@ -1064,8 +1064,7 @@ client.on('end', () => { }); ``` -To connect on the socket `/tmp/echo.sock` the second line would just be -changed to: +To connect on the socket `/tmp/echo.sock`: ```js const client = net.createConnection({ path: '/tmp/echo.sock' }); @@ -1174,8 +1173,7 @@ Test this by using `telnet`: $ telnet localhost 8124 ``` -To listen on the socket `/tmp/echo.sock` the third line from the last would -just be changed to: +To listen on the socket `/tmp/echo.sock`: ```js server.listen('/tmp/echo.sock', () => {