From 75dc7e2b6b5522911b22f52bdba5357b19a9a773 Mon Sep 17 00:00:00 2001
From: Bill Bejeck
Date: Sat, 13 Apr 2019 18:50:27 -0400
Subject: [PATCH] KAFKA-8209: Wrong link for KStreams DSL in core concepts doc
(#6564)
Reviewers Matthias J. Sax , Michael Drogalis , Victoria Bialas
---
docs/streams/core-concepts.html | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/docs/streams/core-concepts.html b/docs/streams/core-concepts.html
index c925c2ee6cf..79f5b82bef8 100644
--- a/docs/streams/core-concepts.html
+++ b/docs/streams/core-concepts.html
@@ -185,7 +185,7 @@
Some stream processing applications don't require state, which means the processing of a message is independent from
the processing of all other messages.
However, being able to maintain state opens up many possibilities for sophisticated stream processing applications: you
- can join input streams, or group and aggregate data records. Many such stateful operators are provided by the Kafka Streams DSL.
+ can join input streams, or group and aggregate data records. Many such stateful operators are provided by the Kafka Streams DSL.
Kafka Streams provides so-called state stores, which can be used by stream processing applications to store and query data.