Skip to content

Commit be38cd9

Browse files
authored
Update quick_tour.md
some typo's fixed
1 parent 7404693 commit be38cd9

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

Diff for: docs/quick_tour.md

+3-3
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ The transport layer or PSR (Enqueue message service) is a Message Oriented Middl
1212
It is a messaging component that allows applications to create, send, receive, and read messages.
1313
It allows the communication between different components of a distributed application to be loosely coupled, reliable, and asynchronous.
1414

15-
PSR is inspired by JMS (Java Message Service). We tried to be as close as possible to [JSR 914](https://docs.oracle.com/javaee/7/api/javax/jms/package-summary.html) specification.
15+
PSR is inspired by JMS (Java Message Service). We tried to stay as close as possible to the [JSR 914](https://docs.oracle.com/javaee/7/api/javax/jms/package-summary.html) specification.
1616
For now it supports [AMQP](https://www.rabbitmq.com/tutorials/amqp-concepts.html) and [STOMP](https://stomp.github.io/) message queue protocols.
1717
You can connect to many modern brokers such as [RabbitMQ](https://www.rabbitmq.com/), [ActiveMQ](http://activemq.apache.org/) and others.
1818

@@ -157,8 +157,8 @@ $queueConsumer->consume();
157157
## Client
158158

159159
It provides an easy to use high level abstraction.
160-
The goal of the component is hide as much as possible low level details so you can concentrate on things that really matters.
161-
For example, It configure a broker for you by creating queues, exchanges and bind them.
160+
The goal of the component is to hide as much as possible low level details so you can concentrate on things that really matter.
161+
For example, it configures a broker for you by creating queues, exchanges and bind them.
162162
It provides easy to use services for producing and processing messages.
163163
It supports unified format for setting message expiration, delay, timestamp, correlation id.
164164
It supports [message bus](http://www.enterpriseintegrationpatterns.com/patterns/messaging/MessageBus.html) so different applications can talk to each other.

0 commit comments

Comments
 (0)