From 5b853a041fd464f7f5c33e1caf9e67728f0d62ab Mon Sep 17 00:00:00 2001 From: Ahmed Alaa <92916738+AhmedAlaa4611@users.noreply.github.com> Date: Sun, 10 Aug 2025 11:43:32 +0300 Subject: [PATCH] Fix hyphenation of lower-level for grammatical correctness --- queues.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/queues.md b/queues.md index 96bb429706..ef0981baa8 100644 --- a/queues.md +++ b/queues.md @@ -1025,7 +1025,7 @@ ProcessPodcast::dispatch($podcast)->beforeCommit(); ### Job Chaining -Job chaining allows you to specify a list of queued jobs that should be run in sequence after the primary job has executed successfully. If one job in the sequence fails, the rest of the jobs will not be run. To execute a queued job chain, you may use the `chain` method provided by the `Bus` facade. Laravel's command bus is a lower level component that queued job dispatching is built on top of: +Job chaining allows you to specify a list of queued jobs that should be run in sequence after the primary job has executed successfully. If one job in the sequence fails, the rest of the jobs will not be run. To execute a queued job chain, you may use the `chain` method provided by the `Bus` facade. Laravel's command bus is a lower-level component that queued job dispatching is built on top of: ```php use App\Jobs\OptimizePodcast;