From 8c8f7f79045679540e1637706b80a735177fe8da Mon Sep 17 00:00:00 2001 From: thepaperpilot Date: Mon, 26 Dec 2022 23:17:07 -0600 Subject: [PATCH] Fix typos --- src/util/bignum.ts | 2 +- src/util/save.ts | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/src/util/bignum.ts b/src/util/bignum.ts index 33d180e..d8e3252 100644 --- a/src/util/bignum.ts +++ b/src/util/bignum.ts @@ -18,7 +18,7 @@ export const { export type DecimalSource = RawDecimalSource; declare global { - /** Augment the window object so the big num functions can be access from the console. */ + /** Augment the window object so the big num functions can be accessed from the console. */ interface Window { Decimal: typeof Decimal; exponentialFormat: (num: DecimalSource, precision: number, mantissa: boolean) => string; diff --git a/src/util/save.ts b/src/util/save.ts index 89d7e0b..e43d34b 100644 --- a/src/util/save.ts +++ b/src/util/save.ts @@ -143,7 +143,7 @@ window.onbeforeunload = () => { declare global { /** - * Augment the window object so the save function, and the hard reset function can be access from the console. + * Augment the window object so the save function, and the hard reset function can be accessed from the console. */ interface Window { save: VoidFunction;