From 9c0f9dfa21c6d671cabb5d0d174c69f1ebef4366 Mon Sep 17 00:00:00 2001 From: Quentin Adam Date: Mon, 5 Aug 2024 15:34:03 +0200 Subject: [PATCH] fmt --- Decimal.ts | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Decimal.ts b/Decimal.ts index beb310b..f557e2e 100644 --- a/Decimal.ts +++ b/Decimal.ts @@ -193,10 +193,10 @@ export default class Decimal { /** * Returns the multiplicative inverse of the current Decimal instance. - * + * * Throws if the resulting value cannot be represented with a fixed number of decimals (like 1/3). * 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. - * + * * ```ts * Decimal.from(3).inv(); // Throws * Decimal.from(3).inv(2); // Returns 0.33