diff --git a/Decimal.test.ts b/Decimal.test.ts index 2eddc88..493a8e1 100644 --- a/Decimal.test.ts +++ b/Decimal.test.ts @@ -497,4 +497,4 @@ Deno.test('lte0', () => { for (const { input, output } of vectors) { assert(input.lte0() === output); } -}); \ No newline at end of file +}); diff --git a/README.md b/README.md index 93fd225..7f673cc 100644 --- a/README.md +++ b/README.md @@ -3,7 +3,9 @@ [![JSR](https://jsr.io/badges/@quentinadam/decimal)](https://jsr.io/@quentinadam/decimal) [![CI](https://github.com/quentinadam/deno-decimal/actions/workflows/ci.yml/badge.svg)](https://github.com/quentinadam/deno-decimal/actions/workflows/ci.yml) -A library for working with arbitrary precision decimal numbers. Numbers are represented by a mantissa (bigint) and an exponent (number). Division may fail if the resulting number is cannot be represented with a fixed number of decimals (like 1/3). +A library for working with arbitrary precision decimal numbers. Numbers are represented by a mantissa (bigint) and an +exponent (number). Division may fail if the resulting number cannot be represented with a fixed number of decimals (like +1/3). ## Usage