Minor project website issue

classic Classic list List threaded Threaded
2 messages Options
Reply | Threaded
Open this post in threaded view
|

Minor project website issue

Hermann Gábor
Hey!

I know it's a minor issue, but in the word count example on the main page
<http://flink.incubator.apache.org/index.html> of the project I noticed a
missing bracket.
Namely line 6:

           out.collect(new Tuple2<String, Long>(s, 1L);

should be

           out.collect(new Tuple2<String, Long>(s, 1L));

Please fix it! (I don't know whether the other examples on the site can be
built or not.)
Thanks!

Cheers,
Gábor
Reply | Threaded
Open this post in threaded view
|

Re: Minor project website issue

Aljoscha Krettek-2
On it.

On Mon, Sep 22, 2014 at 4:29 PM, Hermann Gábor <[hidden email]> wrote:

> Hey!
>
> I know it's a minor issue, but in the word count example on the main page
> <http://flink.incubator.apache.org/index.html> of the project I noticed a
> missing bracket.
> Namely line 6:
>
>            out.collect(new Tuple2<String, Long>(s, 1L);
>
> should be
>
>            out.collect(new Tuple2<String, Long>(s, 1L));
>
> Please fix it! (I don't know whether the other examples on the site can be
> built or not.)
> Thanks!
>
> Cheers,
> Gábor