Skip to content

Commit

Permalink
[hotfix][docs] Fix html tags in Batch API overview
Browse files Browse the repository at this point in the history
  • Loading branch information
lamberken authored and zentol committed Sep 5, 2018
1 parent 4573d48 commit 4d233ba
Showing 1 changed file with 2 additions and 3 deletions.
5 changes: 2 additions & 3 deletions docs/dev/batch/index.md
Original file line number Diff line number Diff line change
Expand Up @@ -592,7 +592,7 @@ val output: DataSet[(Int, String, Double)] = input.sum(0).min(2)
</td>
</tr>

</tr>
<tr>
<td><strong>Join</strong></td>
<td>
Joins two data sets by creating all pairs of elements that are equal on their keys.
Expand All @@ -608,7 +608,7 @@ val result = input1.join(input2).where(0).equalTo(1)
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 scala %}
Expand Down Expand Up @@ -700,7 +700,6 @@ val result = in.partitionByRange(0).mapPartition { ... }
{% endhighlight %}
</td>
</tr>
</tr>
<tr>
<td><strong>Custom Partitioning</strong></td>
<td>
Expand Down

0 comments on commit 4d233ba

Please sign in to comment.