From 2fe54a974b8d096aa9b0e212e34e0c68ee421734 Mon Sep 17 00:00:00 2001 From: theblackmallard <42389961+theblackmallard@users.noreply.github.com> Date: Mon, 4 Jul 2022 18:14:47 -0400 Subject: [PATCH] small correction minimal.py includes the function @app.task('daily') which does not run every 10 seconds, but every day. https://github.com/Miksus/red-engine/blob/6d13ae1965acb3bf3e1e419ea7015e92c0a230b1/docs/code/minimal.py#L5 --- docs/tutorial/quick_start.rst | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/tutorial/quick_start.rst b/docs/tutorial/quick_start.rst index 5efdc537..e9ced4bc 100644 --- a/docs/tutorial/quick_start.rst +++ b/docs/tutorial/quick_start.rst @@ -26,7 +26,7 @@ Next, we make a quick and minimal application: :language: py We initialized the RedEngine application, created one task -which runs every 10 seconds and then we started the app. +which runs every day and then we started the app. This is nothing fancy but gets you stared. What next