From cca47db4999a3909ec3265e549ad79fe8758293e Mon Sep 17 00:00:00 2001 From: Manav Rathi Date: Wed, 9 Apr 2025 11:12:25 +0530 Subject: [PATCH] typos desktop --- desktop/scripts/vips.js | 2 +- desktop/src/main.ts | 2 +- desktop/src/main/types/any-shell-escape.d.ts | 2 +- desktop/src/main/utils/temp.ts | 2 +- desktop/src/preload.ts | 2 +- 5 files changed, 5 insertions(+), 5 deletions(-) diff --git a/desktop/scripts/vips.js b/desktop/scripts/vips.js index b6714d29ec..d995ba0ba7 100755 --- a/desktop/scripts/vips.js +++ b/desktop/scripts/vips.js @@ -24,7 +24,7 @@ * * Note that `vips.js` would've already run once `beforeBuild.js` is run, but on * our CI we prepare builds for multiple architectures in one go, so we need to - * unconditonally replace the binary with the relevant one for the current + * unconditionally replace the binary with the relevant one for the current * architecture being built (which might be different from the one we're running * on). `beforeBuild.js` runs for each architecture being built. * diff --git a/desktop/src/main.ts b/desktop/src/main.ts index aea5a73cc0..332858bcd3 100644 --- a/desktop/src/main.ts +++ b/desktop/src/main.ts @@ -607,7 +607,7 @@ const handleBackOnStripeCheckout = (window: BrowserWindow) => * * But this is an issue for uploads in the self hosted apps (or when we * ourselves are trying to test things by with an arbitrary S3 bucket without - * going via a worker). During upload, theer is no redirection, so the request + * going via a worker). During upload, there is no redirection, so the request * ACAO is "ente://app" but the response ACAO is `null` which don't match, * causing the request to fail. * diff --git a/desktop/src/main/types/any-shell-escape.d.ts b/desktop/src/main/types/any-shell-escape.d.ts index 4172cdb1ef..c5fef6fb96 100644 --- a/desktop/src/main/types/any-shell-escape.d.ts +++ b/desktop/src/main/types/any-shell-escape.d.ts @@ -12,7 +12,7 @@ * * yields (on POSIX shells): * - * curl -v -H 'Location;' -H 'User-Agent: FoorBar'"'"'s so-called "Browser"' 'http://www.daveeddy.com/?name=dave&age=24' + * curl -v -H 'Location;' -H 'User-Agent: FooBar'"'"'s so-called "Browser"' 'http://www.daveeddy.com/?name=dave&age=24' * * or (on Windows): * diff --git a/desktop/src/main/utils/temp.ts b/desktop/src/main/utils/temp.ts index a37f5767f3..85bfeae33e 100644 --- a/desktop/src/main/utils/temp.ts +++ b/desktop/src/main/utils/temp.ts @@ -64,7 +64,7 @@ export const deleteTempFile = async (tempFilePath: string) => { }; /** - * A variant of {@link deleteTempFile} that supresses any errors, making it + * A variant of {@link deleteTempFile} that suppresses any errors, making it * safe to call them in a sequence without needing to handle the scenario where * one of them failing causes the rest to be skipped. */ diff --git a/desktop/src/preload.ts b/desktop/src/preload.ts index 3fab447722..0260beb36d 100644 --- a/desktop/src/preload.ts +++ b/desktop/src/preload.ts @@ -335,7 +335,7 @@ const clearPendingUploads = () => ipcRenderer.invoke("clearPendingUploads"); * > * > https://www.electronjs.org/docs/latest/api/context-bridge#methods * - * The copy itself is relatively fast, but the problem with transfering large + * The copy itself is relatively fast, but the problem with transferring large * amounts of data is potentially running out of memory during the copy. * * For an alternative, see [Note: IPC streams].