From f253cb9303fe8fe9dd14b84c1e11c7a3d57a6e09 Mon Sep 17 00:00:00 2001 From: marsonya Date: Mon, 8 Feb 2021 00:55:51 +0530 Subject: [PATCH] doc: fix typo in buffer.md MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit PR-URL: https://github.com/nodejs/node/pull/37268 Reviewed-By: Luigi Pinca Reviewed-By: Richard Lau Reviewed-By: Antoine du Hamel Reviewed-By: Tobias Nießen Reviewed-By: Gireesh Punathil Reviewed-By: Pooja D P Reviewed-By: Darshan Sen 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 5c02be9f3613a4..d3c1e43e5e29ce 100644 --- a/doc/api/buffer.md +++ b/doc/api/buffer.md @@ -370,7 +370,7 @@ The content-type of the `Blob`. ### `Blob` objects and `MessageChannel` Once a {Blob} object is created, it can be sent via `MessagePort` to multiple -destinations without transfering or immediately copying the data. The data +destinations without transferring or immediately copying the data. The data contained by the `Blob` is copied only when the `arrayBuffer()` or `text()` methods are called.