LibJS: Replace U+2212 MINUS SIGN with U+002D HYPHEN-MINUS

This is an editorial change in the Temporal spec.

See: bbcd37b
This commit is contained in:
Linus Groh 2022-04-29 21:09:10 +02:00
commit 27793bf76c
Notes: sideshowbarker 2024-07-17 11:26:50 +09:00
20 changed files with 102 additions and 102 deletions

View file

@ -159,7 +159,7 @@ JS_DEFINE_NATIVE_FUNCTION(DurationConstructor::compare)
if (ns1 > ns2)
return Value(1);
// 12. If ns1 < ns2, return 1𝔽.
// 12. If ns1 < ns2, return -1𝔽.
if (ns1 < ns2)
return Value(-1);