summaryrefslogtreecommitdiff
path: root/doc/api/buffer.md
diff options
context:
space:
mode:
authorH1Gdev <h1g.z.ouroboros+github@gmail.com>2019-01-17 11:18:39 +0900
committerVse Mozhet Byt <vsemozhetbyt@gmail.com>2019-01-18 02:40:19 +0200
commit74562356db6964f8057ef4bd897725793e55d513 (patch)
treec0378150de8345ad64876c53316381e4371b1e6b /doc/api/buffer.md
parentf2e3a4ed8edf4675e3ec409a8430f6547660960a (diff)
downloadandroid-node-v8-74562356db6964f8057ef4bd897725793e55d513.tar.gz
android-node-v8-74562356db6964f8057ef4bd897725793e55d513.tar.bz2
android-node-v8-74562356db6964f8057ef4bd897725793e55d513.zip
doc: fix typo in Buffer API
PR-URL: https://github.com/nodejs/node/pull/25544 Reviewed-By: Vse Mozhet Byt <vsemozhetbyt@gmail.com> Reviewed-By: Colin Ihrig <cjihrig@gmail.com> Reviewed-By: James M Snell <jasnell@gmail.com> Reviewed-By: Michael Dawson <michael_dawson@ca.ibm.com>
Diffstat (limited to 'doc/api/buffer.md')
-rw-r--r--doc/api/buffer.md2
1 files changed, 1 insertions, 1 deletions
diff --git a/doc/api/buffer.md b/doc/api/buffer.md
index 1bfd30b194..0a73a1d8a9 100644
--- a/doc/api/buffer.md
+++ b/doc/api/buffer.md
@@ -221,7 +221,7 @@ elements, and not as a byte array of the target type. That is,
`[0x1020304]` or `[0x4030201]`.
It is possible to create a new `Buffer` that shares the same allocated memory as
-a [`TypedArray`] instance by using the `TypeArray` object's `.buffer` property.
+a [`TypedArray`] instance by using the `TypedArray` object's `.buffer` property.
```js
const arr = new Uint16Array(2);