Skip to content

Commit a11900b

Browse files
committed
Fix typos in documentation
1 parent 0bac6e1 commit a11900b

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -104,7 +104,7 @@ This means that you control how many operations can be executed concurrently.
104104
If you add a job to the queue and it still below the limit, it will be executed
105105
immediately. If you keep adding new jobs to the queue and its concurrency limit
106106
is reached, it will not start a new operation and instead queue this for future
107-
execution. Once one of the pending operations complete, it will pick the next
107+
execution. Once one of the pending operations is complete, it will pick the next
108108
job from the queue and execute this operation.
109109

110110
The `new Queue(int $concurrency, ?int $limit, callable(mixed):PromiseInterface<T> $handler)` call

src/Queue.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@
1616
* If you add a job to the queue and it still below the limit, it will be executed
1717
* immediately. If you keep adding new jobs to the queue and its concurrency limit
1818
* is reached, it will not start a new operation and instead queue this for future
19-
* execution. Once one of the pending operations complete, it will pick the next
19+
* execution. Once one of the pending operations is complete, it will pick the next
2020
* job from the queue and execute this operation.
2121
*
2222
* @template T

0 commit comments

Comments
 (0)