Skip to content

Commit

Permalink
fix Js.Bigint to unblock blackbox tests
Browse files Browse the repository at this point in the history
  • Loading branch information
anmonteiro committed Jan 18, 2025
1 parent 6747a1e commit 0c47037
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions jscomp/runtime/js_bigint.ml
Original file line number Diff line number Diff line change
Expand Up @@ -49,7 +49,7 @@ external asUintN : precision:int -> t -> t = "asUintN"
type toLocaleStringOptions = { style : string; currency : string }

external toLocaleString :
locale:string -> ?options:toLocaleStringOptions -> t -> string
locale:string -> ?options:toLocaleStringOptions -> (t[@mel.this]) -> string
= "toLocaleString"
[@@mel.send]
(**
Expand All @@ -59,7 +59,7 @@ external toLocaleString :
external toString : t -> string = "toLocaleString"
[@@mel.send]
(**
[toString bigint] returns a string representing the specified BigInt value.
[toString bigint] returns a string representing the specified BigInt value.
*)

external neg : t -> t = "%negfloat"
Expand Down

0 comments on commit 0c47037

Please sign in to comment.