Skip to content

Commit 3561c36

Browse files
committed
Fixed typos
1 parent 8ca5144 commit 3561c36

35 files changed

+51
-51
lines changed

docker-compose.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ services:
1818
environment:
1919
- AMQP_DSN=amqp://guest:guest@rabbitmq:5672/mqdev
2020
- AMQPS_DSN=amqps://guest:guest@rabbitmqssl:5671
21-
- DOCTINE_DSN=mysql://root:rootpass@mysql/mqdev
21+
- DOCTRINE_DSN=mysql://root:rootpass@mysql/mqdev
2222
- RABBITMQ_HOST=rabbitmq
2323
- RABBITMQ_USER=guest
2424
- RABBITMQ_PASSWORD=guest
File renamed without changes.

docs/bundle/functional_testing.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ In this chapter we give some advices on how to test message queue related logic.
77

88
## NULL transport
99

10-
While testing the application you dont usually need to send real message to real broker.
10+
While testing the application you don't usually need to send real message to real broker.
1111
Or even have a dependency on a MQ broker.
1212
Here's the purpose of the NULL transport.
1313
It simple do nothing when you ask it to send a message.

docs/bundle/job_queue.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -75,7 +75,7 @@ $ bin/console doctrine:schema:update
7575

7676
Guarantee that there is only one job with such name running at a time.
7777
For example you have a task that builds a search index.
78-
It takes quite a lot of time and you dont want another instance of same task working at the same time.
78+
It takes quite a lot of time and you don't want another instance of same task working at the same time.
7979
Here's how to do it:
8080

8181
* Write a job processor class:

docs/client/message_examples.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -82,7 +82,7 @@ $producer->sendEvent('aTopic', $message);
8282
## Timestamp, Content type, Message id
8383

8484
Those are self describing things.
85-
Usually they are set by Client so you dont have to worry about them.
85+
Usually they are set by Client so you don't have to worry about them.
8686
If you do not like what Client set you can always set custom values:
8787

8888
```php

docs/client/supported_brokers.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -31,6 +31,6 @@ Here's the list of protocols and Client features supported by them
3131

3232
* \* Possible if a RabbitMQ delay plugin is installed.
3333
* \*\* Possible if topics (exchanges) are configured on broker side manually.
34-
* \*\*\* Possible if RabbitMQ Managment Plugin is installed.
34+
* \*\*\* Possible if RabbitMQ Management Plugin is installed.
3535

3636
[back to index](../index.md)

docs/consumption/message_processor.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -113,7 +113,7 @@ class SendMailProcessor implements PsrProcessor
113113

114114
The consumption component provide some useful extensions, for example there is an extension that makes RPC processing simpler.
115115
The producer might wait for a reply from a consumer and in order to send it a processor has to return a reply result.
116-
Dont forget to add `ReplyExtension`.
116+
Don't forget to add `ReplyExtension`.
117117

118118
```php
119119
<?php

docs/contribution.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@ To run tests simply run
2323

2424
## Commit
2525

26-
When you try to commit changes `php-cs-fixer` is run. It fixes all coding style issues. Dont forget to stage them and commit everything.
26+
When you try to commit changes `php-cs-fixer` is run. It fixes all coding style issues. Don't forget to stage them and commit everything.
2727
Once everything is done open a pull request on official repository.
2828

2929
[back to index](index.md)

docs/index.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -36,7 +36,7 @@
3636
- [Job queue](bundle/job_queue.md)
3737
- [Consumption extension](bundle/consumption_extension.md)
3838
- [Production settings](bundle/production_settings.md)
39-
- [Debuging](bundle/debuging.md)
39+
- [Debugging](bundle/debugging.md)
4040
- [Functional testing](bundle/functional_testing.md)
4141
* [Laravel](#laravel)
4242
- [Quick tour](laravel/quick_tour.md)

docs/laravel/queues.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -52,7 +52,7 @@ $ php artisan queue:work interop
5252

5353
While interop connector can send\consume messages from any queue interop compatible transports.
5454
But it does not support some AMQP specific features, such as queue declaration and delays.
55-
To cover those cases the package provides a AmqpQueue. It can work with any amqp interop [compatible trnasport](https://github.com/queue-interop/queue-interop#compatible-projects-1), for example `enqueue/amqp-bunny`.
55+
To cover those cases the package provides a AmqpQueue. It can work with any amqp interop [compatible transport](https://github.com/queue-interop/queue-interop#compatible-projects-1), for example `enqueue/amqp-bunny`.
5656
Here's how it could be configured:
5757

5858
```php

0 commit comments

Comments
 (0)