Fix whitespace in CancelablePromise.hbs

This commit is contained in:
Hendrik Helmken 2024-03-07 09:23:59 +01:00
parent 9e475d9668
commit 134d6b23b6
No known key found for this signature in database
GPG Key ID: 74C9275811A77D78

View File

@ -83,9 +83,9 @@ export class CancelablePromise<T> implements Promise<T> {
});
}
get [Symbol.toStringTag]() {
return "Cancellable Promise";
}
get [Symbol.toStringTag]() {
return "Cancellable Promise";
}
public then<TResult1 = T, TResult2 = never>(
onFulfilled?: ((value: T) => TResult1 | PromiseLike<TResult1>) | null,