summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--doc/api/string_decoder.md4
-rw-r--r--doc/api/url.md22
-rw-r--r--doc/api/util.md2
3 files changed, 14 insertions, 14 deletions
diff --git a/doc/api/string_decoder.md b/doc/api/string_decoder.md
index 43ea739f4b..6bd5a57502 100644
--- a/doc/api/string_decoder.md
+++ b/doc/api/string_decoder.md
@@ -28,8 +28,8 @@ internal buffer is used to ensure that the decoded string does not contain
any incomplete multibyte characters. These are held in the buffer until the
next call to `stringDecoder.write()` or until `stringDecoder.end()` is called.
-In the following example, the three UTF-8 encoded bytes of the European euro
-symbol are written over three separate operations:
+In the following example, the three UTF-8 encoded bytes of the European Euro
+symbol (`€`) are written over three separate operations:
```js
const StringDecoder = require('string_decoder').StringDecoder;
diff --git a/doc/api/url.md b/doc/api/url.md
index d269927280..c041f9bd8f 100644
--- a/doc/api/url.md
+++ b/doc/api/url.md
@@ -20,17 +20,17 @@ The following details each of the components of a parsed URL. The example
illustrate each.
```
-+---------------------------------------------------------------------------+
-| href |
-+----------++-----------+-----------------+-------------------------+-------+
-| protocol || auth | host | path | hash |
-| || +----------+------+----------+--------------+ |
-| || | hostname | port | pathname | search | |
-| || | | | +-+------------+ |
-| || | | | | | query | |
-" http: // user:pass @ host.com : 8080 /p/a/t/h ? query=string #hash "
-| || | | | | | | |
-+----------++-----------+-----------+------+----------+-+-----------+-------+
+┌─────────────────────────────────────────────────────────────────────────────┐
+│ href │
+├──────────┬┬───────────┬─────────────────┬───────────────────────────┬───────┤
+│ protocol ││ auth │ host │ path │ hash │
+│ ││ ├──────────┬──────┼──────────┬────────────────┤ │
+│ ││ │ hostname │ port │ pathname │ search │ │
+│ ││ │ │ │ ├─┬──────────────┤ │
+│ ││ │ │ │ │ │ query │ │
+" http: // user:pass @ host.com : 8080 /p/a/t/h ? query=string #hash "
+│ ││ │ │ │ │ │ │ │
+└──────────┴┴───────────┴──────────┴──────┴──────────┴─┴──────────────┴───────┘
(all spaces in the "" line should be ignored -- they're purely for formatting)
```
diff --git a/doc/api/util.md b/doc/api/util.md
index f1245993f0..05687698f0 100644
--- a/doc/api/util.md
+++ b/doc/api/util.md
@@ -389,7 +389,7 @@ util.isError({ name: 'Error', message: 'an error occurred' });
Note that this method relies on `Object.prototype.toString()` behavior. It is
possible to obtain an incorrect result when the `object` argument manipulates
-the `@@toStringTag` or overrides the `toString()` method.
+`@@toStringTag`.
```js
const util = require('util');