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

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

commit 4d98d6479bd131aef4197e732746394daee519b1
Author: Jim Galasyn <jim.gala...@confluent.io>
AuthorDate: Wed Dec 28 15:00:15 2022 -0800

    MINOR: Fix method name in table-table FK left join example (#11569)
    
    Reviewers: Matthias J. Sax <matth...@confluent.io>
---
 docs/streams/developer-guide/dsl-api.html | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/docs/streams/developer-guide/dsl-api.html 
b/docs/streams/developer-guide/dsl-api.html
index 6b80656ef22..125723a84a0 100644
--- a/docs/streams/developer-guide/dsl-api.html
+++ b/docs/streams/developer-guide/dsl-api.html
@@ -2567,7 +2567,7 @@ Function&lt;Long, Long&gt; foreignKeyExtractor = (x) 
-&gt; x;
 Function&lt;Long, Long&gt; foreignKeyExtractor = (x) -&gt; x;
 
 // Java 8+ example, using lambda expressions
-                KTable&lt;String, String&gt; joined = left.join(right, 
foreignKeyExtractor,
+                KTable&lt;String, String&gt; joined = left.leftJoin(right, 
foreignKeyExtractor,
                     (leftValue, rightValue) -&gt; &quot;left=&quot; + 
leftValue + &quot;, right=&quot; + rightValue /* ValueJoiner */
                   );</code></pre>
                               <p>Detailed behavior:</p>

Reply via email to