Skip to content

Commit b516fad

Browse files
committed
fmt
1 parent 489f3ad commit b516fad

File tree

2 files changed

+4
-2
lines changed

2 files changed

+4
-2
lines changed

Decimal.test.ts

+1-1
Original file line numberDiff line numberDiff line change
@@ -497,4 +497,4 @@ Deno.test('lte0', () => {
497497
for (const { input, output } of vectors) {
498498
assert(input.lte0() === output);
499499
}
500-
});
500+
});

README.md

+3-1
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,9 @@
33
[![JSR](https://jsr.io/badges/@quentinadam/decimal)](https://jsr.io/@quentinadam/decimal)
44
[![CI](https://github.com/quentinadam/deno-decimal/actions/workflows/ci.yml/badge.svg)](https://github.com/quentinadam/deno-decimal/actions/workflows/ci.yml)
55

6-
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).
6+
A library for working with arbitrary precision decimal numbers. Numbers are represented by a mantissa (bigint) and an
7+
exponent (number). Division may fail if the resulting number cannot be represented with a fixed number of decimals (like
8+
1/3).
79

810
## Usage
911

0 commit comments

Comments
 (0)