diff options
author | Igor Zinkovsky <igor@deno.com> | 2023-11-04 14:04:13 -0700 |
---|---|---|
committer | GitHub <noreply@github.com> | 2023-11-04 14:04:13 -0700 |
commit | 1097de3e1d855cca9d6f16ace9047d8f24ccae90 (patch) | |
tree | 5fb907374fbb20fd3262955ff27da93eaad1e8a5 | |
parent | e4c947dd2b63726ecc9b4303e03921b6839adade (diff) |
fix(cron): update Deno.cron doc example (#21078)
Signed-off-by: Igor Zinkovsky <igor@deno.com>
-rw-r--r-- | cli/tsc/dts/lib.deno.unstable.d.ts | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/cli/tsc/dts/lib.deno.unstable.d.ts b/cli/tsc/dts/lib.deno.unstable.d.ts index 2c8a1144f..0a7a82469 100644 --- a/cli/tsc/dts/lib.deno.unstable.d.ts +++ b/cli/tsc/dts/lib.deno.unstable.d.ts @@ -1323,7 +1323,7 @@ declare namespace Deno { * callback based on the specified schedule. * * ```ts - * Deno.cron("sample cron", "*\/20 * * * *", () => { + * Deno.cron("sample cron", "20 * * * *", () => { * console.log("cron job executed"); * }); * ``` |