From 07831576c357ce7aedd106afd4d14ba5f8ca7b5e Mon Sep 17 00:00:00 2001 From: Thomas Citharel Date: Tue, 5 Jan 2021 15:36:01 +0100 Subject: [PATCH] Fix another typo Signed-off-by: Thomas Citharel --- developer_manual/basics/backgroundjobs.rst | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/developer_manual/basics/backgroundjobs.rst b/developer_manual/basics/backgroundjobs.rst index 0dd1150e9..6042f7e45 100644 --- a/developer_manual/basics/backgroundjobs.rst +++ b/developer_manual/basics/backgroundjobs.rst @@ -56,7 +56,7 @@ As you can see our dependency injection also works just fine for background jobs The ITimeFactory always needs to be passed to the parent constructor. Since it is required to be set. -In this case it is a background job that runs every hour. And we take the ``uid`` arguemnt +In this case it is a background job that runs every hour. And we take the ``uid`` argument to pass on to the service to run the background job. The ``run`` function is the main thing you need to implement and where all the