diff options
Diffstat (limited to 'Userland/Libraries/LibJS/Runtime/Intl/Intl.cpp')
-rw-r--r-- | Userland/Libraries/LibJS/Runtime/Intl/Intl.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Userland/Libraries/LibJS/Runtime/Intl/Intl.cpp b/Userland/Libraries/LibJS/Runtime/Intl/Intl.cpp index 4b58004a14..ce1cf5c402 100644 --- a/Userland/Libraries/LibJS/Runtime/Intl/Intl.cpp +++ b/Userland/Libraries/LibJS/Runtime/Intl/Intl.cpp @@ -120,7 +120,7 @@ JS_DEFINE_NATIVE_FUNCTION(Intl::supported_values_of) // 3. Else if key is "collation", then else if (key == "collation"sv) { // a. Let list be ! AvailableCollations( ). - // NOTE: We don't yet parse any collation data, but "default" is allowed. + // FIXME: We don't yet parse any collation data, but "default" is allowed. This matches Intl.Locale.prototype.collations. static constexpr auto collations = AK::Array { "default"sv }; list = collations.span(); } |