Return-Path: X-Original-To: apmail-ignite-commits-archive@minotaur.apache.org Delivered-To: apmail-ignite-commits-archive@minotaur.apache.org Received: from mail.apache.org (hermes.apache.org [140.211.11.3]) by minotaur.apache.org (Postfix) with SMTP id 25277171C5 for ; Mon, 6 Apr 2015 22:35:32 +0000 (UTC) Received: (qmail 84977 invoked by uid 500); 6 Apr 2015 22:35:32 -0000 Delivered-To: apmail-ignite-commits-archive@ignite.apache.org Received: (qmail 84936 invoked by uid 500); 6 Apr 2015 22:35:31 -0000 Mailing-List: contact commits-help@ignite.incubator.apache.org; run by ezmlm Precedence: bulk List-Help: List-Unsubscribe: List-Post: List-Id: Reply-To: dev@ignite.incubator.apache.org Delivered-To: mailing list commits@ignite.incubator.apache.org Received: (qmail 84927 invoked by uid 99); 6 Apr 2015 22:35:31 -0000 Received: from athena.apache.org (HELO athena.apache.org) (140.211.11.136) by apache.org (qpsmtpd/0.29) with ESMTP; Mon, 06 Apr 2015 22:35:31 +0000 X-ASF-Spam-Status: No, hits=-2000.0 required=5.0 tests=ALL_TRUSTED,T_RP_MATCHES_RCVD X-Spam-Check-By: apache.org Received: from [140.211.11.3] (HELO mail.apache.org) (140.211.11.3) by apache.org (qpsmtpd/0.29) with SMTP; Mon, 06 Apr 2015 22:35:30 +0000 Received: (qmail 84813 invoked by uid 99); 6 Apr 2015 22:35:10 -0000 Received: from git1-us-west.apache.org (HELO git1-us-west.apache.org) (140.211.11.23) by apache.org (qpsmtpd/0.29) with ESMTP; Mon, 06 Apr 2015 22:35:10 +0000 Received: by git1-us-west.apache.org (ASF Mail Server at git1-us-west.apache.org, from userid 33) id B938BE181A; Mon, 6 Apr 2015 22:35:10 +0000 (UTC) Content-Type: text/plain; charset="us-ascii" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit From: vkulichenko@apache.org To: commits@ignite.incubator.apache.org Date: Mon, 06 Apr 2015 22:35:10 -0000 Message-Id: <72a6338338974dd1882da6c4b433db93@git.apache.org> X-Mailer: ASF-Git Admin Mailer Subject: [1/3] incubator-ignite git commit: # sprint-3 - comment update X-Virus-Checked: Checked by ClamAV on apache.org Repository: incubator-ignite Updated Branches: refs/heads/ignite-471 5290845f4 -> 5aaca330b # sprint-3 - comment update Project: http://git-wip-us.apache.org/repos/asf/incubator-ignite/repo Commit: http://git-wip-us.apache.org/repos/asf/incubator-ignite/commit/5a2b46c2 Tree: http://git-wip-us.apache.org/repos/asf/incubator-ignite/tree/5a2b46c2 Diff: http://git-wip-us.apache.org/repos/asf/incubator-ignite/diff/5a2b46c2 Branch: refs/heads/ignite-471 Commit: 5a2b46c29771a81b04ba2992cdc1a38e2cc31a89 Parents: 8242c15 Author: Dmitiry Setrakyan Authored: Mon Apr 6 12:49:34 2015 -0700 Committer: Dmitiry Setrakyan Committed: Mon Apr 6 12:49:34 2015 -0700 ---------------------------------------------------------------------- .../core/src/main/java/org/apache/ignite/stream/StreamVisitor.java | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) ---------------------------------------------------------------------- http://git-wip-us.apache.org/repos/asf/incubator-ignite/blob/5a2b46c2/modules/core/src/main/java/org/apache/ignite/stream/StreamVisitor.java ---------------------------------------------------------------------- diff --git a/modules/core/src/main/java/org/apache/ignite/stream/StreamVisitor.java b/modules/core/src/main/java/org/apache/ignite/stream/StreamVisitor.java index b97263f..a87ac94 100644 --- a/modules/core/src/main/java/org/apache/ignite/stream/StreamVisitor.java +++ b/modules/core/src/main/java/org/apache/ignite/stream/StreamVisitor.java @@ -25,7 +25,7 @@ import java.util.*; /** * Convenience adapter to visit every key-value tuple in the stream. Note, that the visitor * does not update the cache. If the tuple needs to be stored in the cache, - * then {@code cache.put(...)} should be called explicitely. + * then {@code cache.put(...)} should be called explicitly. */ public abstract class StreamVisitor implements StreamReceiver, IgniteBiInClosure, Map.Entry> { /** */