From 57a6452998421b28dc1fa307094b3482f4424017 Mon Sep 17 00:00:00 2001 From: Ajay Mateti Date: Wed, 30 Jun 2021 19:29:35 +0530 Subject: [PATCH] Fixed typo in Task Queues --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index 266f8b16..c8038b9a 100644 --- a/README.md +++ b/README.md @@ -1348,7 +1348,7 @@ The user is not blocked and the job is processed in the background. During this ### Task queues -Tasks queues receive tasks and their related data, runs them, then delivers their results. They can support scheduling and can be used to run computationally-intensive jobs in the background. +Task queues receive tasks and their related data, runs them, then delivers their results. They can support scheduling and can be used to run computationally-intensive jobs in the background. **[Celery](https://docs.celeryproject.org/en/stable/)** has support for scheduling and primarily has python support.