You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@flink.apache.org by ch...@apache.org on 2019/01/09 09:16:25 UTC

[flink] branch release-1.7 updated: [hotfix][docs] Fix javadocs of RandomFibonacciSource

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

chesnay pushed a commit to branch release-1.7
in repository https://gitbox.apache.org/repos/asf/flink.git


The following commit(s) were added to refs/heads/release-1.7 by this push:
     new 8e94ec6  [hotfix][docs] Fix javadocs of RandomFibonacciSource
8e94ec6 is described below

commit 8e94ec612e2c7cdf70b152ba0f4893ed67bec329
Author: zy <60...@qq.com>
AuthorDate: Wed Jan 9 17:16:19 2019 +0800

    [hotfix][docs] Fix javadocs of RandomFibonacciSource
---
 .../org/apache/flink/streaming/examples/iteration/IterateExample.java   | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/flink-examples/flink-examples-streaming/src/main/java/org/apache/flink/streaming/examples/iteration/IterateExample.java b/flink-examples/flink-examples-streaming/src/main/java/org/apache/flink/streaming/examples/iteration/IterateExample.java
index d123615..13db58a 100644
--- a/flink-examples/flink-examples-streaming/src/main/java/org/apache/flink/streaming/examples/iteration/IterateExample.java
+++ b/flink-examples/flink-examples-streaming/src/main/java/org/apache/flink/streaming/examples/iteration/IterateExample.java
@@ -115,7 +115,7 @@ public class IterateExample {
 	// *************************************************************************
 
 	/**
-	 * Generate BOUND number of random integer pairs from the range from 0 to BOUND/2.
+	 * Generate BOUND number of random integer pairs from the range from 1 to BOUND/2.
 	 */
 	private static class RandomFibonacciSource implements SourceFunction<Tuple2<Integer, Integer>> {
 		private static final long serialVersionUID = 1L;