Skip to content

Commit b162aea

Browse files
SimonSiefkemarco-ippolito
authored andcommittedJun 17, 2024
src: fix typo Unabled -> Unable
PR-URL: #52820 Reviewed-By: Richard Lau <rlau@redhat.com> Reviewed-By: Luigi Pinca <luigipinca@gmail.com> Reviewed-By: Harshitha K P <harshitha014@gmail.com> Reviewed-By: Marco Ippolito <marcoippolito54@gmail.com> Reviewed-By: Tobias Nießen <tniessen@tnie.de> Reviewed-By: James M Snell <jasnell@gmail.com>
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)
Please sign in to comment.