You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@kafka.apache.org by gu...@apache.org on 2017/03/10 15:51:46 UTC

kafka git commit: MINOR: KStream: fix typo in javadoc

Repository: kafka
Updated Branches:
  refs/heads/trunk 7565dcd8b -> c063561ce


MINOR: KStream: fix typo in javadoc

Author: Michael G. Noll <mi...@confluent.io>

Reviewers: Guozhang Wang, Damian Guy

Closes #2668 from miguno/trunk-kstream-javadoc-typo


Project: http://git-wip-us.apache.org/repos/asf/kafka/repo
Commit: http://git-wip-us.apache.org/repos/asf/kafka/commit/c063561c
Tree: http://git-wip-us.apache.org/repos/asf/kafka/tree/c063561c
Diff: http://git-wip-us.apache.org/repos/asf/kafka/diff/c063561c

Branch: refs/heads/trunk
Commit: c063561ce815ec066851e480b7f70a84d6ccd371
Parents: 7565dcd
Author: Michael G. Noll <mi...@confluent.io>
Authored: Fri Mar 10 07:51:42 2017 -0800
Committer: Guozhang Wang <wa...@gmail.com>
Committed: Fri Mar 10 07:51:42 2017 -0800

----------------------------------------------------------------------
 .../src/main/java/org/apache/kafka/streams/kstream/KStream.java  | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/kafka/blob/c063561c/streams/src/main/java/org/apache/kafka/streams/kstream/KStream.java
----------------------------------------------------------------------
diff --git a/streams/src/main/java/org/apache/kafka/streams/kstream/KStream.java b/streams/src/main/java/org/apache/kafka/streams/kstream/KStream.java
index a11d8f4..f41218d 100644
--- a/streams/src/main/java/org/apache/kafka/streams/kstream/KStream.java
+++ b/streams/src/main/java/org/apache/kafka/streams/kstream/KStream.java
@@ -1536,7 +1536,7 @@ public interface KStream<K, V> {
      * In contrast, processing {@link KTable} input records will only update the internal {@link KTable} state and
      * will not produce any result records.
      * <p>
-     * For each {@code KStream} record weather or not it finds a corresponding record in {@link KTable} the provided
+     * For each {@code KStream} record whether or not it finds a corresponding record in {@link KTable} the provided
      * {@link ValueJoiner} will be called to compute a value (with arbitrary type) for the result record.
      * If no {@link KTable} record was found during lookup, a {@code null} value will be provided to {@link ValueJoiner}.
      * The key of the result record is the same as for both joining input records.
@@ -1608,7 +1608,7 @@ public interface KStream<K, V> {
      * In contrast, processing {@link KTable} input records will only update the internal {@link KTable} state and
      * will not produce any result records.
      * <p>
-     * For each {@code KStream} record weather or not it finds a corresponding record in {@link KTable} the provided
+     * For each {@code KStream} record whether or not it finds a corresponding record in {@link KTable} the provided
      * {@link ValueJoiner} will be called to compute a value (with arbitrary type) for the result record.
      * If no {@link KTable} record was found during lookup, a {@code null} value will be provided to {@link ValueJoiner}.
      * The key of the result record is the same as for both joining input records.