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 2017/11/27 12:52:34 UTC

flink git commit: [hotfix][docs] Fix missing period package declaration

Repository: flink
Updated Branches:
  refs/heads/master fbddf35fa -> bb1b0bfde


[hotfix][docs] Fix missing period package declaration

This closes #5077.


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

Branch: refs/heads/master
Commit: bb1b0bfdede5fd8e586ddc7d7d3808445535e18e
Parents: fbddf35
Author: Matrix42 <93...@qq.com>
Authored: Mon Nov 27 17:34:01 2017 +0800
Committer: zentol <ch...@apache.org>
Committed: Mon Nov 27 13:51:50 2017 +0100

----------------------------------------------------------------------
 docs/dev/packaging.md | 6 +++---
 1 file changed, 3 insertions(+), 3 deletions(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/flink/blob/bb1b0bfd/docs/dev/packaging.md
----------------------------------------------------------------------
diff --git a/docs/dev/packaging.md b/docs/dev/packaging.md
index e83d9ac..769a675 100644
--- a/docs/dev/packaging.md
+++ b/docs/dev/packaging.md
@@ -56,7 +56,7 @@ the program's data flow. To do that, the program must implement the
 strings passed to that method are the command line arguments. The program's plan can be created from
 the environment via the `ExecutionEnvironment#createProgramPlan()` method. When packaging the
 program's plan, the JAR manifest must point to the class implementing the
-`org.apache.flinkapi.common.Program` interface, instead of the class with the main method.
+`org.apache.flink.api.common.Program` interface, instead of the class with the main method.
 
 
 ### Summary
@@ -68,10 +68,10 @@ attributes are found, the *program-class* attribute takes precedence over the *m
 attribute. Both the command line and the web interface support a parameter to pass the entry point
 class name manually for cases where the JAR manifest contains neither attribute.
 
-2. If the entry point class implements the `org.apache.flinkapi.common.Program`, then the system
+2. If the entry point class implements the `org.apache.flink.api.common.Program`, then the system
 calls the `getPlan(String...)` method to obtain the program plan to execute.
 
-3. If the entry point class does not implement the `org.apache.flinkapi.common.Program` interface,
+3. If the entry point class does not implement the `org.apache.flink.api.common.Program` interface,
 the system will invoke the main method of the class.
 
 {% top %}