Skip to content

Commit

Permalink
edit readme
Browse files Browse the repository at this point in the history
  • Loading branch information
davidmartinez10 committed Oct 16, 2019
1 parent 84e5d9c commit 63aaa8c
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -42,7 +42,7 @@ new Decimal("2").sqrt().toString() // "1.414213562373095048801688"
- [The bigfloat object](#the-bigfloat-object)
- [Change precision](#change-precision)
- [evaluate(expression, precision)](#evaluateexpression-precision)
- [make(number)](#makenumber)
- [bigfloat(number) / make(number)](#makenumber)
- [string(bigfloat)](#stringbigfloat)
- [Other useful functions](#other-useful-functions)
- [Changelog](#changelog)
Expand All @@ -60,7 +60,7 @@ import bigfloat, { Decimal } from "bigfloat.js";
# The bigfloat object
```typescript
interface BigFloat {
coefficient: JSBI;
coefficient: bigint;
exponent: number;
}
```
Expand Down

0 comments on commit 63aaa8c

Please sign in to comment.