From c8cf0c1650a2eb77c3bf6a10456081f17db6c779 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?St=C9=91rry=20Shiv=C9=91m?= Date: Sat, 21 Sep 2024 13:21:10 +0530 Subject: [PATCH] Update README.md --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index 6578861..6418dc7 100644 --- a/README.md +++ b/README.md @@ -74,7 +74,7 @@ val job = Job( jobId = "OneTimeJob", // Must be unique for each job trigger = OneTimeTrigger(ZonedDateTime.now(timeZone).plusSeconds(5)), // Next runtime of the job; when creating the job for the first time, - // it will be used as the initial runtime. + // it will be used as the initial runtime (Optional). nextRunTime = ZonedDateTime.now(timeZone).plusSeconds(5), // Coroutine dispatcher in which the job should be executed. dispatcher = Dispatchers.Default,