Skip to content
This repository was archived by the owner on Apr 29, 2022. It is now read-only.

Commit 8114ffd

Browse files
fixed Readme
1 parent f8b7fe4 commit 8114ffd

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

README.md

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22

33
<a href="https://www.nuget.org/packages/RabbitMQ.Client.Core.DependencyInjection/" alt="NuGet package"><img src="https://img.shields.io/nuget/v/RabbitMQ.Client.Core.DependencyInjection.svg" /></a><br/>
44
[![Codacy Badge](https://api.codacy.com/project/badge/Grade/f688764d2ba340099ec50b74726e25fd)](https://app.codacy.com/app/AntonyVorontsov/RabbitMQ.Client.Core.DependencyInjection?utm_source=github.com&utm_medium=referral&utm_content=AntonyVorontsov/RabbitMQ.Client.Core.DependencyInjection&utm_campaign=Badge_Grade_Dashboard)<br/>
5-
Wrapper-library of RabbitMQ.Client with Dependency Injection infrastructure under the .Net Core 2.2 platform.
5+
Wrapper-library of RabbitMQ.Client with Dependency Injection infrastructure under the .Net Core 3.0 platform.
66

77
## Producer
88

@@ -73,7 +73,7 @@ queueService.Send(
7373
```
7474

7575
In order to make this possible, a default dead-letter-exchange with `"default.dlx.exchange"` name will be created. You can change it via main exchange configuration (example is down below).
76-
And also you have a default functionality of resending failed messages (if you get an error while processing recieved message).
76+
And also you have a default functionality of resending failed messages (if you get an error while processing received message).
7777

7878
## Consumer
7979

@@ -154,7 +154,7 @@ public class CustomAsyncMessageHandler : IAsyncMessageHandler
154154
}
155155
```
156156

157-
But you can not use `IQueueService` inside those message handlers otherwise you will be faced with cycling dependency problem. But sometimes you may need to send something in other queue (e.g. queue with responses) from one message handler or another. For that purpose use non-cyclinc handlers.
157+
But you can not use `IQueueService` inside those message handlers otherwise you will be faced with cycling dependency problem. But sometimes you may need to send something in other queue (e.g. queue with responses) from one message handler or another. For that purpose use non-cyclic handlers.
158158

159159
```csharp
160160
public class CustomMessageHandler : INonCyclicMessageHandler
@@ -208,7 +208,7 @@ You can find example projects in the repository too.
208208
## appsettings.json configuration
209209

210210
You have to add a couple configuration sections: (1) settings to connect to the RabbitMQ server and (2) a section that configures an exchange (one section per exchange frankly speaking).
211-
Exchange sections define how to bind queues and exchanges with each ohter and which routing keys to use for that.
211+
Exchange sections define how to bind queues and exchanges with each other and which routing keys to use for that.
212212
You can bind a queue to an exchange with more than one routing key, but if there are no routing keys in the queue section, then that queue will be bound to the exchange with its name.
213213
```json
214214
{

0 commit comments

Comments
 (0)