From 75004d32ab35300e69ea57c330805fe5b803880d 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 970117efc3dc1f..1fe6237e73f466 100644 --- a/src/node_blob.cc +++ b/src/node_blob.cc @@ -100,7 +100,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;