From 97aaa4beafa21ebe58092d6b9920aeeec38370d0 Mon Sep 17 00:00:00 2001 From: 0xflotus <26602940+0xflotus@users.noreply.github.com> Date: Wed, 10 Oct 2018 22:25:49 +0200 Subject: [PATCH] fixed some typos --- README.md | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/README.md b/README.md index 630f9d9..d28014a 100644 --- a/README.md +++ b/README.md @@ -254,7 +254,7 @@ this buffer. The code snippet below comes from the Connection.h C++ header file. ````c++ /** - * Parse data that was recevied from RabbitMQ + * Parse data that was received from RabbitMQ * * Every time that data comes in from RabbitMQ, you should call this method to parse * the incoming data, and let it handle by the AMQP-CPP library. This method returns @@ -938,7 +938,7 @@ DeferredPublisher &publish(const std::string &exchange, const std::string &routi ```` Published messages are normally not confirmed by the server, and the RabbitMQ -will not send a report back to inform you whether the message was succesfully +will not send a report back to inform you whether the message was successfully published or not. But with the flags you can instruct RabbitMQ to send back the message if it was undeliverable. @@ -991,7 +991,7 @@ positive and negative acknowledgments handling are implemented as callbacks for ````c++ // setup confirm mode and ack/nack callbacks channel.confirmSelect().onSuccess([&]() { - // from this moment onwards ack/nack confirmations are comming in + // from this moment onwards ack/nack confirmations are coming in channel.publish("my-exchange", "my-key", "my first message"); // message counter is now 1, will call onAck/onNack with deliverTag=1