fix: various typos (grouped in to separate commits) (#18177)

This commit is contained in:
luzpaz 2025-05-09 09:10:34 -04:00 committed by GitHub
parent ccc2b191dd
commit b1e1362246
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
8 changed files with 8 additions and 8 deletions

View file

@ -69,7 +69,7 @@ export class CancellableTask {
} catch (error) {
// eslint-disable-next-line @typescript-eslint/no-explicit-any
if ((error as any).name === 'AbortError') {
// abort error is not treated as an error, but as a cancelation.
// abort error is not treated as an error, but as a cancellation.
return 'CANCELED';
}
this.#transitionToErrored(error);