1
Fork 0
mirror of https://github.com/RGBCube/serenity synced 2025-05-31 11:38:11 +00:00

LibJS: Reflect infallibility editorial change in ToTemporalCalendar

See: 3437106
This commit is contained in:
Linus Groh 2021-07-28 18:25:05 +01:00
parent 0a8209ab81
commit d84fd3ad5c

View file

@ -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);
}