Skip to content

Commit

Permalink
src: fix typo Unabled -> Unable
Browse files Browse the repository at this point in the history
  • Loading branch information
SimonSiefke committed May 3, 2024
1 parent 15456e4 commit bcb7561
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 bcb7561

Please sign in to comment.