Fix typo in kalk readme

This commit is contained in:
Callum Irving 2023-01-10 18:35:08 -05:00 committed by PaddiM8
parent 2be84ffd72
commit 09ef5e8da3

View File

@ -27,7 +27,7 @@ assert_eq!(result.to_f64(), 15f64);
```
### Using f64 instead of rug::Float
The cargo feature `rug` enables rug, and is used by default. If you disalbe this, kalk will use `f64` instead, making it more portable.
The cargo feature `rug` enables rug, and is used by default. If you disable this, kalk will use `f64` instead, making it more portable.
### Compiling
Make sure you have `diffutils` `gcc` `make` and `m4` installed.
@ -37,4 +37,4 @@ Make sure you have `diffutils` `gcc` `make` and `m4` installed.
const kalk = await import("@paddim8/kalk");
const context = new kalk.Context();
console.log(context.evaluate("2pi + 3").toScientificNotation().toString());
```
```