Conversation
| immediately. If you keep adding new jobs to the queue and its concurrency limit | ||
| is reached, it will not start a new operation and instead queue this for future | ||
| execution. Once one of the pending operations complete, it will pick the next | ||
| execution. Once one of the pending operations is complete, it will pick the next |
There was a problem hiding this comment.
Note that the exact same sentence can also be found in the Queue class, I would like to make sure this is consistent. In either case I'm not sure about this one, feels like both would be valid variants, no?
There was a problem hiding this comment.
Would agree to this. Didn't saw it in the Queue class. I was fast eyeballing the sentences, so next time I will take more time in future PR's. Thank you. 👍
README.md
Outdated
| ``` | ||
|
|
||
| The `$q` instance is invokable, so that invoking `$q(...$args)` will | ||
| The `$q` instance is invocable, so that invoking `$q(...$args)` will |
There was a problem hiding this comment.
I'm not sure about this one, feels like both would be valid variants, no? Couldn't find a definitive source, but perhaps you have more insights? It looks like "invokable" is used more often than "invocable" in a programming context?
There was a problem hiding this comment.
Was researching the topic and it seems like you are definitely right with that one. It was also said in #44 as I saw. Thank you for this information. 🌟
src/Queue.php
Outdated
|
|
||
| /** | ||
| * The Queue instance is invokable, so that invoking `$q(...$args)` will | ||
| * The Queue instance is invocable, so that invoking `$q(...$args)` will |
There was a problem hiding this comment.
(See above, same comment applies here)
|
Thanks for your help @clue. I guess now should everything be okay. I was changing "invocable" back to "invokable" and I also changed the sentence in the |
|
In my opinion, since the sentence can be interpreted in two ways, I don't think any changes are necessary for the documentation part. To maintain the developer's linguistic style, I would close the ticket and and keep the newly acquired information about 'invokable' in mind for future typo fixes. |
This pull request fixes a few typos with the help of https://github.com/szepeviktor/typos-on-you.
Builds on top of clue/reactphp-redis#146 and #44.