Return-Path: X-Original-To: apmail-flink-commits-archive@minotaur.apache.org Delivered-To: apmail-flink-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 0DB2611C34 for ; Wed, 24 Sep 2014 09:09:34 +0000 (UTC) Received: (qmail 75578 invoked by uid 500); 24 Sep 2014 09:09:34 -0000 Delivered-To: apmail-flink-commits-archive@flink.apache.org Received: (qmail 75554 invoked by uid 500); 24 Sep 2014 09:09:34 -0000 Mailing-List: contact commits-help@flink.incubator.apache.org; run by ezmlm Precedence: bulk List-Help: List-Unsubscribe: List-Post: List-Id: Reply-To: dev@flink.incubator.apache.org Delivered-To: mailing list commits@flink.incubator.apache.org Received: (qmail 75545 invoked by uid 99); 24 Sep 2014 09:09:33 -0000 Received: from athena.apache.org (HELO athena.apache.org) (140.211.11.136) by apache.org (qpsmtpd/0.29) with ESMTP; Wed, 24 Sep 2014 09:09:33 +0000 X-ASF-Spam-Status: No, hits=-2000.0 required=5.0 tests=ALL_TRUSTED X-Spam-Check-By: apache.org Received: from [140.211.11.4] (HELO eris.apache.org) (140.211.11.4) by apache.org (qpsmtpd/0.29) with ESMTP; Wed, 24 Sep 2014 09:09:32 +0000 Received: from eris.apache.org (localhost [127.0.0.1]) by eris.apache.org (Postfix) with ESMTP id 9D3ED2388868; Wed, 24 Sep 2014 09:09:12 +0000 (UTC) Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit Subject: svn commit: r1627262 - in /incubator/flink: index.html site/index.html Date: Wed, 24 Sep 2014 09:09:12 -0000 To: commits@flink.incubator.apache.org From: aljoscha@apache.org X-Mailer: svnmailer-1.0.9 Message-Id: <20140924090912.9D3ED2388868@eris.apache.org> X-Virus-Checked: Checked by ClamAV on apache.org Author: aljoscha Date: Wed Sep 24 09:09:12 2014 New Revision: 1627262 URL: http://svn.apache.org/r1627262 Log: Fix missing parenthesis in Example on index.html Modified: incubator/flink/index.html incubator/flink/site/index.html Modified: incubator/flink/index.html URL: http://svn.apache.org/viewvc/incubator/flink/index.html?rev=1627262&r1=1627261&r2=1627262&view=diff ============================================================================== --- incubator/flink/index.html (original) +++ incubator/flink/index.html Wed Sep 24 09:09:12 2014 @@ -88,7 +88,7 @@ DataSet input = env.readTextFile input.flatMap(new FlatMapFunction() { public void flatMap(String value, Collector out) { for (String s : value.split(" ")) { - out.collect(new Tuple2(s, 1L); + out.collect(new Tuple2(s, 1L)); } } }) @@ -128,4 +128,4 @@ File System) can act as data sources. - \ No newline at end of file + Modified: incubator/flink/site/index.html URL: http://svn.apache.org/viewvc/incubator/flink/site/index.html?rev=1627262&r1=1627261&r2=1627262&view=diff ============================================================================== --- incubator/flink/site/index.html (original) +++ incubator/flink/site/index.html Wed Sep 24 09:09:12 2014 @@ -202,7 +202,7 @@ complex tasks efficiently.

input.flatMap(new FlatMapFunction() { public void flatMap(String value, Collector out) { for (String s : value.split(" ")) { - out.collect(new Tuple2<String, Long>(s, 1L); + out.collect(new Tuple2<String, Long>(s, 1L)); } } }) @@ -244,6 +244,7 @@ File System) can act as data sources.

+