You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@flink.apache.org by tr...@apache.org on 2018/01/26 14:41:32 UTC

[06/16] flink git commit: [hotfix] Fix typo in AbstractCustomCommandLine Javadoc

[hotfix] Fix typo in AbstractCustomCommandLine Javadoc


Project: http://git-wip-us.apache.org/repos/asf/flink/repo
Commit: http://git-wip-us.apache.org/repos/asf/flink/commit/c4ca8632
Tree: http://git-wip-us.apache.org/repos/asf/flink/tree/c4ca8632
Diff: http://git-wip-us.apache.org/repos/asf/flink/diff/c4ca8632

Branch: refs/heads/master
Commit: c4ca86320082421d47733ba7a10c5ebecfac0e42
Parents: 6969fe2
Author: gyao <ga...@data-artisans.com>
Authored: Mon Jan 15 12:13:25 2018 +0100
Committer: Till Rohrmann <tr...@apache.org>
Committed: Fri Jan 26 13:50:21 2018 +0100

----------------------------------------------------------------------
 .../org/apache/flink/client/cli/AbstractCustomCommandLine.java     | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/flink/blob/c4ca8632/flink-clients/src/main/java/org/apache/flink/client/cli/AbstractCustomCommandLine.java
----------------------------------------------------------------------
diff --git a/flink-clients/src/main/java/org/apache/flink/client/cli/AbstractCustomCommandLine.java b/flink-clients/src/main/java/org/apache/flink/client/cli/AbstractCustomCommandLine.java
index 59046bf..484c391 100644
--- a/flink-clients/src/main/java/org/apache/flink/client/cli/AbstractCustomCommandLine.java
+++ b/flink-clients/src/main/java/org/apache/flink/client/cli/AbstractCustomCommandLine.java
@@ -73,7 +73,7 @@ public abstract class AbstractCustomCommandLine<T> implements CustomCommandLine<
 	 * Override configuration settings by specified command line options.
 	 *
 	 * @param commandLine containing the overriding values
-	 * @return Effective configuration with the overriden configuration settings
+	 * @return Effective configuration with the overridden configuration settings
 	 */
 	protected Configuration applyCommandLineOptionsToConfiguration(CommandLine commandLine) throws FlinkException {
 		final Configuration resultingConfiguration = new Configuration(configuration);