From 79ebbff9338028b91128ecda9bf7e87e63a22012 Mon Sep 17 00:00:00 2001 From: Will McGugan Date: Fri, 7 Apr 2023 12:58:58 +0100 Subject: [PATCH] typo --- docs/guide/workers.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/guide/workers.md b/docs/guide/workers.md index 30073f539..79942ced8 100644 --- a/docs/guide/workers.md +++ b/docs/guide/workers.md @@ -112,7 +112,7 @@ The `state` attribute will contain one of the following values: | --------- | ----------------------------------------------------------------------------------- | | PENDING | The worker was created, but not yet started. | | RUNNING | The worker is currently running. | -| CANCELLED | The worker was cancelled and is not longer running. | +| CANCELLED | The worker was cancelled and is no longer running. | | ERROR | The worker raised an exception, and `worker.error` will contain the exception. | | SUCCESS | The worker completed successful, and `worker.result` will contain the return value. |