summaryrefslogtreecommitdiff
path: root/cli/tsc
diff options
context:
space:
mode:
Diffstat (limited to 'cli/tsc')
-rw-r--r--cli/tsc/dts/lib.deno.unstable.d.ts2
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");
* });
* ```