This is an automated email from the ASF dual-hosted git repository. acosentino pushed a commit to branch master in repository https://gitbox.apache.org/repos/asf/camel.git
commit a4a8d50f93bba3738c17936b44a4d27b5a0b6ffe Author: Andrea Cosentino <[email protected]> AuthorDate: Thu Jun 11 09:11:12 2020 +0200 Added exchangeName description correctly to Javadoc --- .../java/org/apache/camel/component/rabbitmq/RabbitMQEndpoint.java | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/components/camel-rabbitmq/src/main/java/org/apache/camel/component/rabbitmq/RabbitMQEndpoint.java b/components/camel-rabbitmq/src/main/java/org/apache/camel/component/rabbitmq/RabbitMQEndpoint.java index ef8e64e..ebdcd51 100644 --- a/components/camel-rabbitmq/src/main/java/org/apache/camel/component/rabbitmq/RabbitMQEndpoint.java +++ b/components/camel-rabbitmq/src/main/java/org/apache/camel/component/rabbitmq/RabbitMQEndpoint.java @@ -382,9 +382,9 @@ public class RabbitMQEndpoint extends DefaultEndpoint implements AsyncEndpoint { } /** - * The exchange name determines which exchange produced messages will sent - * to. In the case of consumers, the exchange name determines which exchange - * the queue will bind to. + * The exchange name determines the exchange to which the produced + * messages will be sent to. In the case of consumers, the exchange name determines + * the exchange the queue will be bound to. */ public void setExchangeName(String exchangeName) { this.exchangeName = exchangeName;
