Skip to content

Commit

Permalink
Doc Fix
Browse files Browse the repository at this point in the history
  • Loading branch information
garyrussell committed May 1, 2020
1 parent 9a961aa commit 2db5263
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/reference/asciidoc/kafka.adoc
Original file line number Diff line number Diff line change
Expand Up @@ -4573,7 +4573,7 @@ When using a POJO batch listener (e.g. `List<Thing>`), and you don't have the fu
[source, java]
----
@KafkaListener(id = "recovering", topics = "someTopic")
public void listen(List<ConsumerRecord<Thing>> things) {
public void listen(List<Thing> things) {
for (int i = 0; i < records.size(); i++) {
try {
process(things.get(i));
Expand Down

0 comments on commit 2db5263

Please sign in to comment.