chore(async): add missing code snippet tags (#4432)

This commit is contained in:
Asher Gomez 2024-03-04 18:17:24 +11:00 committed by GitHub
parent d78ce08453
commit 02213b97b0
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
3 changed files with 3 additions and 3 deletions

View File

@ -15,7 +15,7 @@ export class DeadlineError extends Error {
* Constructs a new {@linkcode DeadlineError} instance.
*
* @example
* ```
* ```ts
* import { DeadlineError } from "https://deno.land/std@$STD_VERSION/async/deadline.ts";
*
* throw new DeadlineError();

View File

@ -23,7 +23,7 @@ export interface DebouncedFunction<T extends Array<unknown>> {
* aborted.
*
* @example
* ```
* ```ts
* import { debounce } from "https://deno.land/std@$STD_VERSION/async/debounce.ts";
*
* await Array.fromAsync(

View File

@ -13,7 +13,7 @@ export class RetryError extends Error {
* Constructs a new {@linkcode RetryError} instance.
*
* @example
* ```
* ```ts
* import { RetryError } from "https://deno.land/std@$STD_VERSION/async/retry.ts";
*
* throw new RetryError({ foo: "bar" }, 3);