Skip to content

Commit 9c0f9df

Browse files
committed
fmt
1 parent cbb6688 commit 9c0f9df

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

Decimal.ts

+2-2
Original file line numberDiff line numberDiff line change
@@ -193,10 +193,10 @@ export default class Decimal {
193193

194194
/**
195195
* Returns the multiplicative inverse of the current Decimal instance.
196-
*
196+
*
197197
* Throws if the resulting value cannot be represented with a fixed number of decimals (like 1/3).
198198
* If you need to invert such a value, use the optional `significantDigits` parameter to specify the number of significant digits to use in the result.
199-
*
199+
*
200200
* ```ts
201201
* Decimal.from(3).inv(); // Throws
202202
* Decimal.from(3).inv(2); // Returns 0.33

0 commit comments

Comments
 (0)