You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@kafka.apache.org by bb...@apache.org on 2019/04/16 14:35:48 UTC

[kafka] branch 1.0 updated: KAFKA-8209: Wrong link for KStreams DSL in core concepts doc (#6564)

This is an automated email from the ASF dual-hosted git repository.

bbejeck pushed a commit to branch 1.0
in repository https://gitbox.apache.org/repos/asf/kafka.git


The following commit(s) were added to refs/heads/1.0 by this push:
     new 2ffb62f  KAFKA-8209: Wrong link for KStreams DSL in core concepts doc (#6564)
2ffb62f is described below

commit 2ffb62f75c7d925d3477a9a1c04120a2a5070530
Author: Bill Bejeck <bb...@gmail.com>
AuthorDate: Sat Apr 13 18:50:27 2019 -0400

    KAFKA-8209: Wrong link for KStreams DSL in core concepts doc (#6564)
    
    Reviewers Matthias J. Sax <mj...@apache.org>, Michael Drogalis <mi...@confluent.io>, Victoria Bialas <vi...@confluent.io>
---
 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 f2f32ad..e48e6f3 100644
--- a/docs/streams/core-concepts.html
+++ b/docs/streams/core-concepts.html
@@ -133,7 +133,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 <a href="/{{version}}/documentation/streams/developer-guide#streams_dsl"><b>Kafka Streams DSL</b></a>.
+        can join input streams, or group and aggregate data records. Many such stateful operators are provided by the <a href="/{{version}}/documentation/streams/developer-guide/dsl-api.html"><b>Kafka Streams DSL</b></a>.
     </p>
     <p>
         Kafka Streams provides so-called <b>state stores</b>, which can be used by stream processing applications to store and query data.