chore: Fix multiple typos (#8105)

This commit is contained in:
hugo-syn
2024-01-12 01:37:36 +01:00
committed by GitHub
parent 4c933f733b
commit 922ff08a80
6 changed files with 7 additions and 7 deletions

View File

@@ -662,7 +662,7 @@ bool JSCommonJSModule::evaluate(
auto throwScope = DECLARE_THROW_SCOPE(vm);
generator(globalObject, JSC::Identifier::fromString(vm, key), propertyNames, arguments);
RETURN_IF_EXCEPTION(throwScope, false);
// This goes off of the assumption that you only call this `evaluate` using a generator that explicity
// This goes off of the assumption that you only call this `evaluate` using a generator that explicitly
// assigns the `default` export first.
JSValue defaultValue = arguments.at(0);
this->putDirect(vm, WebCore::clientData(vm)->builtinNames().exportsPublicName(), defaultValue, 0);