Skip to content

Commit 75004d3

Browse files
SimonSiefketargos
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 0b073f8 commit 75004d3

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
@@ -100,7 +100,7 @@ void BlobFromFilePath(const FunctionCallbackInfo<Value>& args) {
100100
env, permission::PermissionScope::kFileSystemRead, path.ToStringView());
101101
auto entry = DataQueue::CreateFdEntry(env, args[0]);
102102
if (entry == nullptr) {
103-
return THROW_ERR_INVALID_ARG_VALUE(env, "Unabled to open file as blob");
103+
return THROW_ERR_INVALID_ARG_VALUE(env, "Unable to open file as blob");
104104
}
105105

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

0 commit comments

Comments
 (0)