From 92d0794d6372f0950d635dc7b60a2297aa868df9 Mon Sep 17 00:00:00 2001 From: H1Gdev Date: Thu, 17 Jan 2019 11:18:39 +0900 Subject: [PATCH] doc: fix typo in Buffer API PR-URL: https://github.com/nodejs/node/pull/25544 Reviewed-By: Vse Mozhet Byt Reviewed-By: Colin Ihrig Reviewed-By: James M Snell Reviewed-By: Michael Dawson --- doc/api/buffer.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/doc/api/buffer.md b/doc/api/buffer.md index ccde0702275375..7b406c1fa3c310 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);