mirror of
https://github.com/LadybirdBrowser/ladybird.git
synced 2025-08-27 04:37:22 +00:00
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:
parent
df1f81ba90
commit
27793bf76c
Notes:
sideshowbarker
2024-07-17 11:26:50 +09:00
Author: https://github.com/linusg
Commit: 27793bf76c
Pull-request: https://github.com/SerenityOS/serenity/pull/13837
Reviewed-by: https://github.com/IdanHo ✅
Reviewed-by: https://github.com/Lubrsi ✅
20 changed files with 102 additions and 102 deletions
|
@ -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);
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue