Skip to content

Commit f5980f8

Browse files
ngocnhan-tran1996spring-builds
authored andcommitted
Fix typos (#3992)
Fixes: #3992 Signed-off-by: Tran Ngoc Nhan <[email protected]> (cherry picked from commit 6f33e44)
1 parent fd077b3 commit f5980f8

File tree

3 files changed

+5
-5
lines changed

3 files changed

+5
-5
lines changed

spring-kafka-docs/src/main/antora/modules/ROOT/pages/kafka/receiving-messages/filtering.adoc

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,7 @@ public void listen(Thing thing) {
2929

3030
Starting with version 3.3, Ignoring empty batches that result from filtering by `RecordFilterStrategy` is supported.
3131
When implementing `RecordFilterStrategy`, it can be configured through `ignoreEmptyBatch()`.
32-
The default setting is `false`, indicating `KafkaListener` will be invoked even if all `ConsumerRecord` s are filtered out.
32+
The default setting is `false`, indicating `KafkaListener` will be invoked even if all ``ConsumerRecord``s are filtered out.
3333

3434
If `true` is returned, the `KafkaListener` [underline]#will not be invoked# when all `ConsumerRecord` are filtered out.
3535
However, commit to broker, will still be executed.

spring-kafka-docs/src/main/antora/modules/ROOT/pages/kafka/sending-messages.adoc

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -556,7 +556,7 @@ Previously, the listener had to echo custom correlation headers.
556556
[[exchanging-messages]]
557557
=== Request/Reply with `Message<?>`+++s+++
558558

559-
Version 2.7 added methods to the `ReplyingKafkaTemplate` to send and receive `spring-messaging` 's `Message<?>` abstraction:
559+
Version 2.7 added methods to the `ReplyingKafkaTemplate` to send and receive ``spring-messaging``'s `Message<?>` abstraction:
560560

561561
[source, java]
562562
----

spring-kafka-docs/src/main/antora/modules/ROOT/pages/retrytopic/features.adoc

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -87,7 +87,7 @@ public RetryTopicConfiguration myRetryTopic(KafkaTemplate<String, MyPojo> templa
8787
}
8888
----
8989

90-
NOTE: The default is having no timeout set, which can also be achieved by providing -1 as the timout value.
90+
NOTE: The default is having no timeout set, which can also be achieved by providing -1 as the timeout value.
9191

9292
[[retry-topic-ex-classifier]]
9393
== Exception Classifier
@@ -250,9 +250,9 @@ Starting with version 3.0.9, you can override the `RetryTopicConfigurationSuppor
250250
[source, java]
251251
----
252252
@Override
253-
protected Consumer<DeadLetterPublishingRecovererFactory>
253+
protected Consumer<DeadLetterPublishingRecovererFactory>
254254
configureDeadLetterPublishingContainerFactory() {
255-
255+
256256
return (factory) -> factory.setDeadLetterPublisherCreator(
257257
(templateResolver, destinationResolver) ->
258258
new CustomDLPR(templateResolver, destinationResolver));

0 commit comments

Comments
 (0)