Merge pull request #2057 from hhelmken/master

Fix whitespace in CancelablePromise.hbs
This commit is contained in:
Ferdi Koomen 2024-03-17 20:44:31 +01:00 committed by GitHub
commit a5980fc4fe
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

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,