Skip to content

Commit dace543

Browse files
Merge pull request #289 from bachhuberdesign/4.2.x-stable
Fixing typos in documentation
2 parents 1bea35a + a14bb4f commit dace543

File tree

1 file changed

+11
-11
lines changed

1 file changed

+11
-11
lines changed

src/main/java/com/rabbitmq/client/Channel.java

Lines changed: 11 additions & 11 deletions
Original file line numberDiff line numberDiff line change
@@ -521,7 +521,7 @@ void exchangeDeclareNoWait(String exchange,
521521
* @see com.rabbitmq.client.AMQP.Exchange.BindOk
522522
* @param destination the name of the exchange to which messages flow across the binding
523523
* @param source the name of the exchange from which messages flow across the binding
524-
* @param routingKey the routine key to use for the binding
524+
* @param routingKey the routing key to use for the binding
525525
* @return a binding-confirm method if the binding was successfully created
526526
* @throws java.io.IOException if an error is encountered
527527
*/
@@ -533,7 +533,7 @@ void exchangeDeclareNoWait(String exchange,
533533
* @see com.rabbitmq.client.AMQP.Exchange.BindOk
534534
* @param destination the name of the exchange to which messages flow across the binding
535535
* @param source the name of the exchange from which messages flow across the binding
536-
* @param routingKey the routine key to use for the binding
536+
* @param routingKey the routing key to use for the binding
537537
* @param arguments other properties (binding parameters)
538538
* @return a binding-confirm method if the binding was successfully created
539539
* @throws java.io.IOException if an error is encountered
@@ -545,7 +545,7 @@ void exchangeDeclareNoWait(String exchange,
545545
* to true and returns void (as there will be no response from the server).
546546
* @param destination the name of the exchange to which messages flow across the binding
547547
* @param source the name of the exchange from which messages flow across the binding
548-
* @param routingKey the routine key to use for the binding
548+
* @param routingKey the routing key to use for the binding
549549
* @param arguments other properties (binding parameters)
550550
* @throws java.io.IOException if an error is encountered
551551
*/
@@ -557,7 +557,7 @@ void exchangeDeclareNoWait(String exchange,
557557
* @see com.rabbitmq.client.AMQP.Exchange.BindOk
558558
* @param destination the name of the exchange to which messages flow across the binding
559559
* @param source the name of the exchange from which messages flow across the binding
560-
* @param routingKey the routine key to use for the binding
560+
* @param routingKey the routing key to use for the binding
561561
* @return a binding-confirm method if the binding was successfully created
562562
* @throws java.io.IOException if an error is encountered
563563
*/
@@ -569,7 +569,7 @@ void exchangeDeclareNoWait(String exchange,
569569
* @see com.rabbitmq.client.AMQP.Exchange.BindOk
570570
* @param destination the name of the exchange to which messages flow across the binding
571571
* @param source the name of the exchange from which messages flow across the binding
572-
* @param routingKey the routine key to use for the binding
572+
* @param routingKey the routing key to use for the binding
573573
* @param arguments other properties (binding parameters)
574574
* @return a binding-confirm method if the binding was successfully created
575575
* @throws java.io.IOException if an error is encountered
@@ -581,7 +581,7 @@ void exchangeDeclareNoWait(String exchange,
581581
* and returns nothing (as there will be no response from the server).
582582
* @param destination the name of the exchange to which messages flow across the binding
583583
* @param source the name of the exchange from which messages flow across the binding
584-
* @param routingKey the routine key to use for the binding
584+
* @param routingKey the routing key to use for the binding
585585
* @param arguments other properties (binding parameters)
586586
* @throws java.io.IOException if an error is encountered
587587
*/
@@ -679,7 +679,7 @@ void queueDeclareNoWait(String queue, boolean durable, boolean exclusive, boolea
679679
* @see com.rabbitmq.client.AMQP.Queue.BindOk
680680
* @param queue the name of the queue
681681
* @param exchange the name of the exchange
682-
* @param routingKey the routine key to use for the binding
682+
* @param routingKey the routing key to use for the binding
683683
* @return a binding-confirm method if the binding was successfully created
684684
* @throws java.io.IOException if an error is encountered
685685
*/
@@ -691,7 +691,7 @@ void queueDeclareNoWait(String queue, boolean durable, boolean exclusive, boolea
691691
* @see com.rabbitmq.client.AMQP.Queue.BindOk
692692
* @param queue the name of the queue
693693
* @param exchange the name of the exchange
694-
* @param routingKey the routine key to use for the binding
694+
* @param routingKey the routing key to use for the binding
695695
* @param arguments other properties (binding parameters)
696696
* @return a binding-confirm method if the binding was successfully created
697697
* @throws java.io.IOException if an error is encountered
@@ -704,7 +704,7 @@ void queueDeclareNoWait(String queue, boolean durable, boolean exclusive, boolea
704704
* from the server).
705705
* @param queue the name of the queue
706706
* @param exchange the name of the exchange
707-
* @param routingKey the routine key to use for the binding
707+
* @param routingKey the routing key to use for the binding
708708
* @param arguments other properties (binding parameters)
709709
* @throws java.io.IOException if an error is encountered
710710
*/
@@ -716,7 +716,7 @@ void queueDeclareNoWait(String queue, boolean durable, boolean exclusive, boolea
716716
* @see com.rabbitmq.client.AMQP.Queue.UnbindOk
717717
* @param queue the name of the queue
718718
* @param exchange the name of the exchange
719-
* @param routingKey the routine key to use for the binding
719+
* @param routingKey the routing key to use for the binding
720720
* @return an unbinding-confirm method if the binding was successfully deleted
721721
* @throws java.io.IOException if an error is encountered
722722
*/
@@ -728,7 +728,7 @@ void queueDeclareNoWait(String queue, boolean durable, boolean exclusive, boolea
728728
* @see com.rabbitmq.client.AMQP.Queue.UnbindOk
729729
* @param queue the name of the queue
730730
* @param exchange the name of the exchange
731-
* @param routingKey the routine key to use for the binding
731+
* @param routingKey the routing key to use for the binding
732732
* @param arguments other properties (binding parameters)
733733
* @return an unbinding-confirm method if the binding was successfully deleted
734734
* @throws java.io.IOException if an error is encountered

0 commit comments

Comments
 (0)