From b4b9db7ffa2104c19e7bd079e4f394a817f40bc0 Mon Sep 17 00:00:00 2001 From: Josh Soref Date: Wed, 25 May 2022 18:38:09 -0400 Subject: [PATCH 1/3] spelling: except if Change-type: patch Signed-off-by: Josh Soref --- lib/gui/app/models/store.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/gui/app/models/store.ts b/lib/gui/app/models/store.ts index f30b6069..27026e2a 100644 --- a/lib/gui/app/models/store.ts +++ b/lib/gui/app/models/store.ts @@ -200,7 +200,7 @@ function storeReducer( constraints.isDriveValid(drive, image) && !drive.isReadOnly && constraints.isDriveSizeRecommended(drive, image) && - // We don't want to auto-select large drives execpt is autoSelectAllDrives is true + // We don't want to auto-select large drives except if autoSelectAllDrives is true (!constraints.isDriveSizeLarge(drive) || shouldAutoselectAll) && // We don't want to auto-select system drives !constraints.isSystemDrive(drive) From 67b26a5b69f819066c6419d3d915846b63fdbcf0 Mon Sep 17 00:00:00 2001 From: Josh Soref Date: Wed, 25 May 2022 18:38:16 -0400 Subject: [PATCH 2/3] spelling: undefined Change-type: patch Signed-off-by: Josh Soref --- lib/gui/etcher.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/gui/etcher.ts b/lib/gui/etcher.ts index f593f2f5..3292e77e 100644 --- a/lib/gui/etcher.ts +++ b/lib/gui/etcher.ts @@ -52,7 +52,7 @@ async function checkForUpdates(interval: number) { const release = await autoUpdater.checkForUpdates(); const isOutdated = semver.compare(release!.updateInfo.version, version) > 0; - const shouldUpdate = release!.updateInfo.stagingPercentage !== 0; // undefinded (default) means 100% + const shouldUpdate = release!.updateInfo.stagingPercentage !== 0; // undefined (default) means 100% if (shouldUpdate && isOutdated) { await autoUpdater.downloadUpdate(); packageUpdated = true; From 06d246e3fd1c573b9e04d23ab3bc3c4036fb9859 Mon Sep 17 00:00:00 2001 From: Josh Soref Date: Wed, 25 May 2022 18:38:16 -0400 Subject: [PATCH 3/3] spelling: validates Change-type: patch Signed-off-by: Josh Soref --- lib/gui/modules/child-writer.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/gui/modules/child-writer.ts b/lib/gui/modules/child-writer.ts index 24630c77..c143b84c 100644 --- a/lib/gui/modules/child-writer.ts +++ b/lib/gui/modules/child-writer.ts @@ -108,7 +108,7 @@ export interface FlashResults extends WriteResult { } /** - * @summary writes the source to the destinations and valiates the writes + * @summary writes the source to the destinations and validates the writes * @param {SourceDestination} source - source * @param {SourceDestination[]} destinations - destinations * @param {Boolean} verify - whether to validate the writes or not