From b3d7e47f15c86c6af293122bf38f40bce2a0cd48 Mon Sep 17 00:00:00 2001 From: SamyOubouaziz Date: Thu, 24 Jul 2025 15:03:06 +0200 Subject: [PATCH] fix(srv): fix indent in cron reference --- macros/serverless/cron-schedules.mdx | 18 +++++++++--------- 1 file changed, 9 insertions(+), 9 deletions(-) diff --git a/macros/serverless/cron-schedules.mdx b/macros/serverless/cron-schedules.mdx index 4057ed8f55..dc6606aa26 100644 --- a/macros/serverless/cron-schedules.mdx +++ b/macros/serverless/cron-schedules.mdx @@ -9,15 +9,15 @@ Adding a cron schedule to a specific task allows you to run it automatically at Cron jobs are expressed using the `* * * * *` format, which corresponds to the fields below. ``` - ┌───────────── minute - │ ┌───────────── hour - │ │ ┌───────────── day of the month - │ │ │ ┌───────────── month - │ │ │ │ ┌───────────── day of the week - │ │ │ │ │ - │ │ │ │ │ - │ │ │ │ │ - * * * * * +┌───────────── minute +│ ┌───────────── hour +│ │ ┌───────────── day of the month +│ │ │ ┌───────────── month +│ │ │ │ ┌───────────── day of the week +│ │ │ │ │ +│ │ │ │ │ +│ │ │ │ │ +* * * * * ``` Each field supports a specific range of values.