From 4ca8cbe043a6b1cfc97da5b5c104677d8f4c2bd4 Mon Sep 17 00:00:00 2001 From: NexVeridian Date: Sun, 20 Oct 2024 09:57:53 -0700 Subject: [PATCH] fix cron comment --- src/scheduler.rs | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/src/scheduler.rs b/src/scheduler.rs index 367e04b77..2ec3fb92b 100644 --- a/src/scheduler.rs +++ b/src/scheduler.rs @@ -70,11 +70,12 @@ pub struct Job { #[serde(default)] pub shell: bool, #[serde(rename = "schedule")] + #[rustfmt::skip] /// The cron expression defining the job's schedule. /// /// The format is as follows: /// sec min hour day of month month day of week year - /// * * * * * * * + /// * * * * * * * pub cron: String, /// Tags for tagging the job. pub tags: Option>,