summaryrefslogtreecommitdiff
path: root/doc/api/net.md
diff options
context:
space:
mode:
authorRich Trott <rtrott@gmail.com>2018-06-04 12:32:54 -0700
committerRich Trott <rtrott@gmail.com>2018-06-06 21:23:00 -0700
commit85fe13402659a174773bfecebac6e8bb5164f572 (patch)
tree11e64ad1b52d37039d517143e10e91a23aed1fc6 /doc/api/net.md
parent25c92a90262e4bdaa97999f5fade56a9551701c9 (diff)
downloadandroid-node-v8-85fe13402659a174773bfecebac6e8bb5164f572.tar.gz
android-node-v8-85fe13402659a174773bfecebac6e8bb5164f572.tar.bz2
android-node-v8-85fe13402659a174773bfecebac6e8bb5164f572.zip
doc: remove spaces around slashes
Remove spaces around slash characters in documentation. This change sometimes rewords the content where the slash construction may not be what is called for. PR-URL: https://github.com/nodejs/node/pull/21140 Reviewed-By: Vse Mozhet Byt <vsemozhetbyt@gmail.com> Reviewed-By: Michaƫl Zasso <targos@protonmail.com> Reviewed-By: Trivikram Kamat <trivikr.dev@gmail.com> Reviewed-By: Colin Ihrig <cjihrig@gmail.com>
Diffstat (limited to 'doc/api/net.md')
-rw-r--r--doc/api/net.md2
1 files changed, 1 insertions, 1 deletions
diff --git a/doc/api/net.md b/doc/api/net.md
index e48bdc1eaa..f1e41b46c4 100644
--- a/doc/api/net.md
+++ b/doc/api/net.md
@@ -213,7 +213,7 @@ called. Otherwise, an `ERR_SERVER_ALREADY_LISTEN` error will be thrown.
One of the most common errors raised when listening is `EADDRINUSE`.
This happens when another server is already listening on the requested
-`port` / `path` / `handle`. One way to handle this would be to retry
+`port`/`path`/`handle`. One way to handle this would be to retry
after a certain amount of time:
```js