You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@flink.apache.org by rm...@apache.org on 2020/07/24 17:31:58 UTC

[flink] branch master updated: [hotfix] Fix typo in JavaDoc in DagConnection

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

rmetzger pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/flink.git


The following commit(s) were added to refs/heads/master by this push:
     new abd58ad  [hotfix] Fix typo in JavaDoc in DagConnection
abd58ad is described below

commit abd58adb7aad54d242b67219498c211e9e18168b
Author: zhangzp <zh...@B-QGSKMD6M-2117.local>
AuthorDate: Tue Jul 14 09:37:52 2020 +0800

    [hotfix] Fix typo in JavaDoc in DagConnection
    
    This closes #12926
---
 .../src/main/java/org/apache/flink/optimizer/dag/DagConnection.java     | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/flink-optimizer/src/main/java/org/apache/flink/optimizer/dag/DagConnection.java b/flink-optimizer/src/main/java/org/apache/flink/optimizer/dag/DagConnection.java
index bd88234..e69d98b 100644
--- a/flink-optimizer/src/main/java/org/apache/flink/optimizer/dag/DagConnection.java
+++ b/flink-optimizer/src/main/java/org/apache/flink/optimizer/dag/DagConnection.java
@@ -24,7 +24,7 @@ import org.apache.flink.optimizer.plandump.DumpableConnection;
 import org.apache.flink.runtime.operators.shipping.ShipStrategyType;
 
 /**
- * A connection between to operators. Represents an intermediate result
+ * A connection between two operators. Represents an intermediate result
  * and a data exchange between the two operators.
  *
  * The data exchange has a mode in which it performs (batch / pipelined).