summaryrefslogtreecommitdiff
path: root/Userland/Libraries/LibJS/SyntheticModule.cpp
diff options
context:
space:
mode:
authorLinus Groh <mail@linusgroh.de>2022-04-11 19:44:33 +0100
committerLinus Groh <mail@linusgroh.de>2022-04-11 19:44:33 +0100
commit231acda7f8e151257e2f920a51bbcefdd8e4af33 (patch)
tree0a9e68f6b8abd66c31b540ab12abfbfbc832c404 /Userland/Libraries/LibJS/SyntheticModule.cpp
parentbd90498332839618e8755cbf64283f985d5806ee (diff)
downloadserenity-231acda7f8e151257e2f920a51bbcefdd8e4af33.zip
LibJS: Fix two bogus spec links
Diffstat (limited to 'Userland/Libraries/LibJS/SyntheticModule.cpp')
-rw-r--r--Userland/Libraries/LibJS/SyntheticModule.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/Userland/Libraries/LibJS/SyntheticModule.cpp b/Userland/Libraries/LibJS/SyntheticModule.cpp
index ea07e4ec61..6287dd9caf 100644
--- a/Userland/Libraries/LibJS/SyntheticModule.cpp
+++ b/Userland/Libraries/LibJS/SyntheticModule.cpp
@@ -13,7 +13,7 @@
namespace JS {
-// 1.2.1 CreateSyntheticModule ( exportNames, evaluationSteps, realm, hostDefined ), https://tc39.es/proposal-json-modules/#sec-synthetic-module-records
+// 1.2.1 CreateSyntheticModule ( exportNames, evaluationSteps, realm, hostDefined ), https://tc39.es/proposal-json-modules/#sec-createsyntheticmodule
SyntheticModule::SyntheticModule(Vector<FlyString> export_names, SyntheticModule::EvaluationFunction evaluation_steps, Realm& realm, StringView filename)
: Module(realm, filename)
, m_export_names(move(export_names))