Jelajahi Sumber

LibJS: Use single page spec link for BoundFunctionCreate

Linus Groh 3 tahun lalu
induk
melakukan
b4c6fd51be
1 mengubah file dengan 1 tambahan dan 1 penghapusan
  1. 1 1
      Userland/Libraries/LibJS/Runtime/BoundFunction.cpp

+ 1 - 1
Userland/Libraries/LibJS/Runtime/BoundFunction.cpp

@@ -11,7 +11,7 @@
 
 
 namespace JS {
 namespace JS {
 
 
-// 10.4.1.3 BoundFunctionCreate ( targetFunction, boundThis, boundArgs ), https://tc39.es/ecma262/multipage/ordinary-and-exotic-objects-behaviours.html#sec-boundfunctioncreate
+// 10.4.1.3 BoundFunctionCreate ( targetFunction, boundThis, boundArgs ), https://tc39.es/ecma262/#sec-boundfunctioncreate
 ThrowCompletionOr<BoundFunction*> BoundFunction::create(GlobalObject& global_object, FunctionObject& target_function, Value bound_this, Vector<Value> bound_arguments)
 ThrowCompletionOr<BoundFunction*> BoundFunction::create(GlobalObject& global_object, FunctionObject& target_function, Value bound_this, Vector<Value> bound_arguments)
 {
 {
     // 1. Let proto be ? targetFunction.[[GetPrototypeOf]]().
     // 1. Let proto be ? targetFunction.[[GetPrototypeOf]]().