Skip to content

Commit 94f061d

Browse files
committed
Fix typo in docs for rabbit and spring cloud stream sections
1 parent a67de87 commit 94f061d

File tree

6 files changed

+9
-9
lines changed

6 files changed

+9
-9
lines changed

docs/modules/ROOT/pages/kafka/kafka_tips.adoc

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -101,9 +101,9 @@ By default, the binder retires for a maximum of 3 attempts with a one second ini
101101
You can change all these configurations as below:
102102

103103
```
104-
spring.cloud.stream.bindings.processData-in-0.consumer.maxAtttempts
104+
spring.cloud.stream.bindings.processData-in-0.consumer.maxAttempts
105105
spring.cloud.stream.bindings.processData-in-0.consumer.backOffInitialInterval
106-
spring.cloud.stream.bindings.processData-in-0.consumer.backOffMultipler
106+
spring.cloud.stream.bindings.processData-in-0.consumer.backOffMultiplier
107107
spring.cloud.stream.bindings.processData-in-0.consumer.backOffMaxInterval
108108
```
109109

docs/modules/ROOT/pages/rabbit/rabbit_overview/binder-properties.adoc

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
= RabbitMQ Binder Properties
33

44
By default, the RabbitMQ binder uses Spring Boot's `ConnectionFactory`.
5-
Conseuqently, it supports all Spring Boot configuration options for RabbitMQ.
5+
Consequently, it supports all Spring Boot configuration options for RabbitMQ.
66
(For reference, see the https://docs.spring.io/spring-boot/docs/current/reference/htmlsingle/#common-application-properties[Spring Boot documentation]).
77
RabbitMQ configuration options use the `spring.rabbitmq` prefix.
88

docs/modules/ROOT/pages/rabbit/rabbit_overview/prod-props.adoc

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -10,12 +10,12 @@ in the format of `spring.cloud.stream.rabbit.default.<property>=<value>`.
1010
Also, keep in mind that binding specific property will override its equivalent in the default.
1111

1212
altermateExchange.binding.queue::
13-
If the exchange does not already exist, and a `name` is provided, bind this queue to the alternate exhange.
13+
If the exchange does not already exist, and a `name` is provided, bind this queue to the alternate exchange.
1414
A simple durable queue with no arguments is provisioned; if more sophisticated configuration is required, you must configure and bind the queue yourself.
1515
+
1616
Default: `null`
1717
alternateExchange.binding.routingKey
18-
If the exchange does not already exist, and a `name` and `queue` is provided, bind the queue to the alternate exhange using this routing key.
18+
If the exchange does not already exist, and a `name` and `queue` is provided, bind the queue to the alternate exchange using this routing key.
1919
+
2020
Default: `#` (for the default `topic` alternate exchange)
2121
alternateExchange.exists::

docs/modules/ROOT/pages/rabbit/rabbit_overview/rabbitmq-consumer-properties.adoc

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ The acknowledge mode.
1515
Default: `AUTO`.
1616
anonymousGroupPrefix::
1717
When the binding has no `group` property, an anonymous, auto-delete queue is bound to the destination exchange.
18-
The default naming stragegy for such queues results in a queue named `anonymous.<base64 representation of a UUID>`.
18+
The default naming strategy for such queues results in a queue named `anonymous.<base64 representation of a UUID>`.
1919
Set this property to change the prefix to something other than the default.
2020
+
2121
Default: `anonymous.`.

docs/modules/ROOT/pages/rabbit/rabbit_overview/rabbitmq-stream-producer.adoc

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ To enable this feature, you must add the `spring-rabbit-stream` jar to the class
66

77
IMPORTANT: The producer properties described above are not supported when you set the `producerType` property to `STREAM_SYNC` or `STREAM_ASYNC`.
88

9-
To configure the binder to use a stream `ProducerType`, Spring Boot will configure an `Environment` `@Bean` from the applicaation properties.
9+
To configure the binder to use a stream `ProducerType`, Spring Boot will configure an `Environment` `@Bean` from the application properties.
1010
You can, optionally, add a customizer to customize the message handler.
1111

1212
[source, java]

docs/modules/ROOT/pages/spring-cloud-stream/binding-properties.adoc

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -121,7 +121,7 @@ Default: empty.
121121
retryableExceptions::
122122
A map of Throwable class names in the key and a boolean in the value.
123123
Specify those exceptions (and subclasses) that will or won't be retried.
124-
Also see `defaultRetriable`.
124+
Also see `defaultRetryable`.
125125
Example: `spring.cloud.stream.bindings.input.consumer.retryable-exceptions.java.lang.IllegalStateException=false`.
126126
+
127127
Default: empty.
@@ -226,7 +226,7 @@ See the consumer property `useNativeDecoding`.
226226
Default: `false`.
227227

228228
errorChannelEnabled::
229-
When set to true, if the binder supports asynchroous send results, send failures are sent to an error channel for the destination. See Error Handling for more information.
229+
When set to true, if the binder supports asynchronous send results, send failures are sent to an error channel for the destination. See Error Handling for more information.
230230
+
231231
Default: false.
232232

0 commit comments

Comments
 (0)