MINOR: Fix link to old doc in quickstart (#12129)

In Kafka's quickstart a link points to the 2.5 Kafka Streams demo.
This PR fixes this link.
This commit is contained in:
Bruno Cadonna 2022-05-06 11:43:30 +02:00 committed by GitHub
parent 16324448a2
commit 816d63b908
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 2 additions and 2 deletions

View File

@ -277,8 +277,8 @@ KTable<String, Long> wordCounts = textLines
wordCounts.toStream().to("output-topic", Produced.with(Serdes.String(), Serdes.Long()));</code></pre>
<p>
The <a href="/25/documentation/streams/quickstart">Kafka Streams demo</a>
and the <a href="/25/documentation/streams/tutorial">app development tutorial</a>
The <a href="/documentation/streams/quickstart">Kafka Streams demo</a>
and the <a href="/documentation/streams/tutorial">app development tutorial</a>
demonstrate how to code and run such a streaming application from start to finish.
</p>