Skip to content

Commit 2db5263

Browse files
committed
Doc Fix
1 parent 9a961aa commit 2db5263

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/reference/asciidoc/kafka.adoc

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4573,7 +4573,7 @@ When using a POJO batch listener (e.g. `List<Thing>`), and you don't have the fu
45734573
[source, java]
45744574
----
45754575
@KafkaListener(id = "recovering", topics = "someTopic")
4576-
public void listen(List<ConsumerRecord<Thing>> things) {
4576+
public void listen(List<Thing> things) {
45774577
for (int i = 0; i < records.size(); i++) {
45784578
try {
45794579
process(things.get(i));

0 commit comments

Comments
 (0)