Skip to content

Commit

Permalink
src: fix typo Unabled -> Unable
Browse files Browse the repository at this point in the history
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]>
  • Loading branch information
SimonSiefke committed May 11, 2024
1 parent 491855c commit 04fbd0d
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/node_blob.cc
Original file line number Diff line number Diff line change
Expand Up @@ -100,7 +100,7 @@ void BlobFromFilePath(const FunctionCallbackInfo<Value>& 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<std::unique_ptr<DataQueue::Entry>> entries;
Expand Down

0 comments on commit 04fbd0d

Please sign in to comment.