You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@flink.apache.org by tz...@apache.org on 2019/01/30 14:54:22 UTC

[flink] 17/18: [hotfix] [javadocs] Fix typo in RpcService

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

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

commit e0aa1518bb875653c018a2d7d2b0bd3b2d090252
Author: libenchao <li...@gmail.com>
AuthorDate: Mon Jan 28 16:07:38 2019 +0800

    [hotfix] [javadocs] Fix typo in RpcService
    
    This closes #7585.
---
 .../src/main/java/org/apache/flink/runtime/rpc/RpcService.java          | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/flink-runtime/src/main/java/org/apache/flink/runtime/rpc/RpcService.java b/flink-runtime/src/main/java/org/apache/flink/runtime/rpc/RpcService.java
index 9aa3119..ff4cc5b 100644
--- a/flink-runtime/src/main/java/org/apache/flink/runtime/rpc/RpcService.java
+++ b/flink-runtime/src/main/java/org/apache/flink/runtime/rpc/RpcService.java
@@ -67,7 +67,7 @@ public interface RpcService {
 		Class<C> clazz);
 
 	/**
-	 * Connect to ta remote fenced rpc server under the provided address. Returns a fenced rpc gateway
+	 * Connect to a remote fenced rpc server under the provided address. Returns a fenced rpc gateway
 	 * which can be used to communicate with the rpc server. If the connection failed, then the
 	 * returned future is failed with a {@link RpcConnectionException}.
 	 *