Skip to content

Commit b162aea

Browse files
SimonSiefkemarco-ippolito
authored andcommitted
src: fix typo Unabled -> Unable
PR-URL: #52820 Reviewed-By: Richard Lau <[email protected]> Reviewed-By: Luigi Pinca <[email protected]> Reviewed-By: Harshitha K P <[email protected]> Reviewed-By: Marco Ippolito <[email protected]> Reviewed-By: Tobias Nießen <[email protected]> Reviewed-By: James M Snell <[email protected]>
1 parent 311bdc6 commit b162aea

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/node_blob.cc

+1-1
Original file line numberDiff line numberDiff line change
@@ -92,7 +92,7 @@ void BlobFromFilePath(const FunctionCallbackInfo<Value>& args) {
9292
env, permission::PermissionScope::kFileSystemRead, path.ToStringView());
9393
auto entry = DataQueue::CreateFdEntry(env, args[0]);
9494
if (entry == nullptr) {
95-
return THROW_ERR_INVALID_ARG_VALUE(env, "Unabled to open file as blob");
95+
return THROW_ERR_INVALID_ARG_VALUE(env, "Unable to open file as blob");
9696
}
9797

9898
std::vector<std::unique_ptr<DataQueue::Entry>> entries;

0 commit comments

Comments
 (0)