Browse Source

LibJS: Reflect infallibility editorial change in ToTemporalCalendar

See: https://github.com/tc39/proposal-temporal/commit/3437106
Linus Groh 4 years ago
parent
commit
d84fd3ad5c
1 changed files with 1 additions and 1 deletions
  1. 1 1
      Userland/Libraries/LibJS/Runtime/Temporal/Calendar.cpp

+ 1 - 1
Userland/Libraries/LibJS/Runtime/Temporal/Calendar.cpp

@@ -334,7 +334,7 @@ Object* to_temporal_calendar(GlobalObject& global_object, Value temporal_calenda
         identifier = move(*parsed_identifier);
     }
 
-    // 4. Return ? CreateTemporalCalendar(identifier).
+    // 4. Return ! CreateTemporalCalendar(identifier).
     return create_temporal_calendar(global_object, identifier);
 }