From b162aeae9e3c5abfb5b5cf16251554c4a6096b9b Mon Sep 17 00:00:00 2001 From: Simon Siefke Date: Sat, 11 May 2024 11:31:06 +0200 Subject: [PATCH] src: fix typo Unabled -> Unable MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit PR-URL: https://github.com/nodejs/node/pull/52820 Reviewed-By: Richard Lau Reviewed-By: Luigi Pinca Reviewed-By: Harshitha K P Reviewed-By: Marco Ippolito Reviewed-By: Tobias Nießen Reviewed-By: James M Snell --- src/node_blob.cc | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/node_blob.cc b/src/node_blob.cc index 9ea37853ce1d46..af6a443bbec1f0 100644 --- a/src/node_blob.cc +++ b/src/node_blob.cc @@ -92,7 +92,7 @@ void BlobFromFilePath(const FunctionCallbackInfo& args) { env, permission::PermissionScope::kFileSystemRead, path.ToStringView()); auto entry = DataQueue::CreateFdEntry(env, args[0]); if (entry == nullptr) { - return THROW_ERR_INVALID_ARG_VALUE(env, "Unabled to open file as blob"); + return THROW_ERR_INVALID_ARG_VALUE(env, "Unable to open file as blob"); } std::vector> entries;