@@ -19,16 +19,16 @@ You can use this to throttle multiple HTTP requests, database queries or pretty
1919much any API that already uses Promises.
2020
2121* ** Async execution of operations** -
22- Process any number of async operations choose how many should be handled
22+ Process any number of async operations and choose how many should be handled
2323 concurrently and how many operations can be queued in-memory. Process their
2424 results as soon as responses come in.
25- The Promise-based design provides a * sane* interface to working with out of bound results.
25+ The Promise-based design provides a * sane* interface to working with out of order results.
2626* ** Lightweight, SOLID design** -
27- Provides a thin abstraction that is [ * just good enough* ] ( http ://en.wikipedia.org/wiki/Principle_of_good_enough)
27+ Provides a thin abstraction that is [ * just good enough* ] ( https ://en.wikipedia.org/wiki/Principle_of_good_enough)
2828 and does not get in your way.
2929 Builds on top of well-tested components and well-established concepts instead of reinventing the wheel.
3030* ** Good test coverage** -
31- Comes with an automated tests suite and is regularly tested in the * real world*
31+ Comes with an automated tests suite and is regularly tested in the * real world* .
3232
3333** Table of contents**
3434
@@ -470,11 +470,11 @@ for more details.
470470The recommended way to install this library is [ through Composer] ( https://getcomposer.org ) .
471471[ New to Composer?] ( https://getcomposer.org/doc/00-intro.md )
472472
473- This project follows [ SemVer] ( http ://semver.org/) .
473+ This project follows [ SemVer] ( https ://semver.org/) .
474474This will install the latest supported version:
475475
476476``` bash
477- $ composer require clue/mq-react:^1.1
477+ $ composer require clue/mq-react:^1.2
478478```
479479
480480See also the [ CHANGELOG] ( CHANGELOG.md ) for details about version upgrades.
0 commit comments