1
Fork 0
mirror of https://github.com/RGBCube/serenity synced 2025-07-24 22:37:34 +00:00

LibJS: Fix incorrectly formatted section comments

A couple of missing URLs, spaces, and a stray comma.
This commit is contained in:
Linus Groh 2021-11-24 17:37:27 +00:00
parent acf3154483
commit a20b189eab
6 changed files with 7 additions and 7 deletions

View file

@ -209,7 +209,7 @@ Vector<PatternPartition> create_parts_from_list(ListFormat const& list_format, V
return parts;
}
// 13.1.3 FormatList ( listFormat, list )
// 13.1.3 FormatList ( listFormat, list ), https://tc39.es/ecma402/#sec-formatlist
String format_list(ListFormat const& list_format, Vector<String> const& list)
{
// 1. Let parts be CreatePartsFromList(listFormat, list).