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 2018/04/12 07:35:11 UTC

[3/5] flink git commit: [hotfix][docs] Fix typos

[hotfix][docs] Fix typos

This closes #5827.


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

Branch: refs/heads/master
Commit: 96cc1d5aedb8081bea152d943a6fedce737cdc92
Parents: 1a5bb36
Author: aria <pr...@gmail.com>
Authored: Sun Apr 8 10:27:06 2018 +0800
Committer: zentol <ch...@apache.org>
Committed: Wed Apr 11 12:17:24 2018 +0200

----------------------------------------------------------------------
 docs/dev/batch/index.md    | 2 +-
 docs/dev/datastream_api.md | 2 +-
 2 files changed, 2 insertions(+), 2 deletions(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/flink/blob/96cc1d5a/docs/dev/batch/index.md
----------------------------------------------------------------------
diff --git a/docs/dev/batch/index.md b/docs/dev/batch/index.md
index f0fab8b..24b3390 100644
--- a/docs/dev/batch/index.md
+++ b/docs/dev/batch/index.md
@@ -288,7 +288,7 @@ result = input1.join(input2)
         describe whether the join happens through partitioning or broadcasting, and whether it uses
         a sort-based or a hash-based algorithm. Please refer to the
         <a href="dataset_transformations.html#join-algorithm-hints">Transformations Guide</a> for
-        a list of possible hints and an example.</br>
+        a list of possible hints and an example.<br>
         If no hint is specified, the system will try to make an estimate of the input sizes and
         pick the best strategy according to those estimates.
 {% highlight java %}

http://git-wip-us.apache.org/repos/asf/flink/blob/96cc1d5a/docs/dev/datastream_api.md
----------------------------------------------------------------------
diff --git a/docs/dev/datastream_api.md b/docs/dev/datastream_api.md
index 3cce5be..6f30f29 100644
--- a/docs/dev/datastream_api.md
+++ b/docs/dev/datastream_api.md
@@ -192,7 +192,7 @@ Collection-based:
 
 Custom:
 
-- `addSource` - Attache a new source function. For example, to read from Apache Kafka you can use
+- `addSource` - Attach a new source function. For example, to read from Apache Kafka you can use
     `addSource(new FlinkKafkaConsumer08<>(...))`. See [connectors]({{ site.baseurl }}/dev/connectors/index.html) for more details.
 
 </div>