No Bug - Spelling error: detatched r=saschanaz DONTBUILD

Differential Revision: https://phabricator.services.mozilla.com/D190114
This commit is contained in:
Matthew Gaudet 2023-10-05 14:16:46 +00:00
Родитель 42b6e80a55
Коммит 84d20233cd
2 изменённых файлов: 2 добавлений и 2 удалений

Просмотреть файл

@ -793,7 +793,7 @@ void ReadableByteStreamControllerEnqueue(
// Step 6.
if (JS::IsDetachedArrayBufferObject(buffer)) {
aRv.ThrowTypeError("Detatched Array Buffer");
aRv.ThrowTypeError("Detached Array Buffer");
return;
}

Просмотреть файл

@ -111,7 +111,7 @@ void ReadableStreamBYOBRequest::RespondWithNewView(JSContext* aCx,
}
if (JS::IsDetachedArrayBufferObject(viewedArrayBuffer)) {
aRv.ThrowTypeError("View of Detatched Array Buffer");
aRv.ThrowTypeError("View of Detached Array Buffer");
return;
}