Skip to content

Commit 8dbdbd3

Browse files
committed
Doc fix
1 parent d2b4942 commit 8dbdbd3

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

docs/queues.txt

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -87,13 +87,13 @@ Add the service provider in ``config/app.php``:
8787
Job Batching
8888
------------
8989

90-
`Laravel's job batching https://laravel.com/docs/{+laravel-docs-version+}/queues#job-batching>`__
91-
feature allows you to easily execute a batch of jobs and then perform some action
92-
when the batch of jobs has completed executing.
90+
`Job batching https://laravel.com/docs/{+laravel-docs-version+}/queues#job-batching>`__
91+
is a Laravel feature to execute batch of jobs and subsequent actions before,
92+
after and during the execution of the jobs from the queue.
9393

9494
With MongoDB, you don't have to create any collection before using this feature.
9595
The collection ``job_batches`` will be created automatically to store meta
96-
information about your job batches, such as their completion percentage
96+
information about your job batches, such as their completion percentage.
9797

9898
.. code-block:: php
9999

0 commit comments

Comments
 (0)