Skip to content

Commit

Permalink
fix: add missing semicolon
Browse files Browse the repository at this point in the history
  • Loading branch information
AlexZeitler authored and jeremydmiller committed Jun 13, 2024
1 parent a5ac6a7 commit dc2aec5
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/Samples/PingPongWithRabbitMq/Pinger/Program.cs
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@
{
// Listen for messages coming into the pongs queue
opts
.ListenToRabbitQueue("pongs")
.ListenToRabbitQueue("pongs");
// Publish messages to the pings queue
opts.PublishMessage<PingMessage>().ToRabbitExchange("pings");
Expand Down

0 comments on commit dc2aec5

Please sign in to comment.