diff --git a/docs/guides/environment-setup/ledger.md b/docs/guides/environment-setup/ledger.md index 785fdc3dba6..6b6309c6a78 100644 --- a/docs/guides/environment-setup/ledger.md +++ b/docs/guides/environment-setup/ledger.md @@ -34,7 +34,7 @@ The public repository for the IOTA Ledger app lives [here](https://github.com/io - Running a Ledger Nano S or X hardware simulator - Compiling and loading the app onto a Ledger Nano S -Additionaly, there is a legacy app, which is useful to test migrations. It lives [here](https://github.com/shufps/app-iota-legacy/tree/tmp_backport_docker). +Additionally, there is a legacy app, which is useful to test migrations. It lives [here](https://github.com/shufps/app-iota-legacy/tree/tmp_backport_docker). ### Installing diff --git a/packages/shared/lib/contexts/vesting/utils/sortVestingOutputs.ts b/packages/shared/lib/contexts/vesting/utils/sortVestingOutputs.ts index bb039a1a07e..4f3a7b3e7d7 100644 --- a/packages/shared/lib/contexts/vesting/utils/sortVestingOutputs.ts +++ b/packages/shared/lib/contexts/vesting/utils/sortVestingOutputs.ts @@ -2,7 +2,7 @@ import { IVestingOutput } from '../interfaces' export function sortVestingOutputs(outputA: IVestingOutput, outputB: IVestingOutput): number { // if there is no unlock time, it means that the output is part of the first payout - // and we place it at the begining of the list + // and we place it at the beginning of the list if (!outputA?.unlockTime) { return -1 } else { diff --git a/packages/shared/lib/core/app/stores/app-update.store.ts b/packages/shared/lib/core/app/stores/app-update.store.ts index ceab2c99a9e..5b1d10c5d15 100644 --- a/packages/shared/lib/core/app/stores/app-update.store.ts +++ b/packages/shared/lib/core/app/stores/app-update.store.ts @@ -21,6 +21,6 @@ export const appUpdateBusy = writable(false) export const appUpdateComplete = writable(false) /** - * The store containing a boolean value for if an error has occured during an application update download. + * The store containing a boolean value for if an error has occurred during an application update download. */ export const appUpdateError = writable(false) diff --git a/packages/shared/lib/core/utils/tests/string.test.ts b/packages/shared/lib/core/utils/tests/string.test.ts index 5f779f5e6e6..8309e19a33e 100644 --- a/packages/shared/lib/core/utils/tests/string.test.ts +++ b/packages/shared/lib/core/utils/tests/string.test.ts @@ -59,7 +59,7 @@ describe('File: string.ts', () => { }) describe('Function: truncateString', () => { - it('should truncate the string correclty if "start" and "end" are greater than 0', () => { + it('should truncate the string correctly if "start" and "end" are greater than 0', () => { expect(truncateString('Lorem ipsum', 3, 3)).toBe('Lor...sum') }) it('should show no letters at the end if "end" is 0', () => {