Skip to content

Commit

Permalink
Add missing closing parenthesis to comment in bignumber.d.ts (MikeMcl…
Browse files Browse the repository at this point in the history
  • Loading branch information
mirumirumi authored Nov 29, 2023
1 parent 6f2932f commit d795adb
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion bignumber.d.ts
Original file line number Diff line number Diff line change
Expand Up @@ -790,7 +790,7 @@ export declare class BigNumber implements BigNumber.Instance {
* returns `false`.
*
* ```ts
* 0.1 > (0.3 - 0 // true
* 0.1 > (0.3 - 0.2) // true
* x = new BigNumber(0.1)
* x.gt(BigNumber(0.3).minus(0.2)) // false
* BigNumber(0).gt(x) // false
Expand Down

0 comments on commit d795adb

Please sign in to comment.