Skip to content

Commit

Permalink
fix: typo
Browse files Browse the repository at this point in the history
  • Loading branch information
veyxov authored and phatboyg committed Apr 10, 2023
1 parent 131d53a commit f92007a
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion doc/content/3.documentation/1.concepts/5.requests.md
Original file line number Diff line number Diff line change
Expand Up @@ -99,7 +99,7 @@ services.AddMassTransit(x =>
{
// configure the consumer on a specific endpoint address
x.AddConsumer<CheckOrderStatusConsumer>()
.Endpoint(e => e.Name = 'order-status');
.Endpoint(e => e.Name = "order-status");

// Sends the request to the specified address, instead of publishing it
x.AddRequestClient<CheckOrderStatus>(new Uri("exchange:order-status"));
Expand Down

0 comments on commit f92007a

Please sign in to comment.