From e5beb95a5bee8125d92f59494361fba9bd006a62 Mon Sep 17 00:00:00 2001 From: Francisco Lopez-Sancho Date: Wed, 11 Dec 2024 21:06:18 +0800 Subject: [PATCH] docs: typo (#73) --- docs/src/modules/java/pages/consuming-producing.adoc | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/src/modules/java/pages/consuming-producing.adoc b/docs/src/modules/java/pages/consuming-producing.adoc index 348c70aa1..0ed3429e5 100644 --- a/docs/src/modules/java/pages/consuming-producing.adoc +++ b/docs/src/modules/java/pages/consuming-producing.adoc @@ -163,7 +163,7 @@ If a Consumer produce messages of `byte[]` type to a topic, the messages publish Producing to a topic is the same as producing to a stream in service to service eventing. The only difference is the `@Produce.ToTopic` annotation. Used to set a destination topic name. -IMPORTANT: To guarantee that events for each entity can be read from the message broker in the same order they were written the cloud event subject id must be specified in metadata along with the event. Se how to in xref:consuming-producing.adoc#_metadata[Metadata] below. +IMPORTANT: To guarantee that events for each entity can be read from the message broker in the same order they were written, the cloud event subject id must be specified in metadata along with the event. See how to in xref:consuming-producing.adoc#_metadata[Metadata] below. [source,java,indent=0] .{sample-base-url}/event-sourced-counter-brokers/src/main/java/counter/application/CounterJournalToTopicConsumer.java[CounterJournalToTopicConsumer.java]