Skip to content

Commit

Permalink
[FLINK-1460] fix typos
Browse files Browse the repository at this point in the history
Fix some typos. Also fix some inconsistent uses of **partition operator** and **partitioning operator** in the codebase.

Author: Shuo Xiang <shuoxiangpub@gmail.com>
Author: Shuo Xiang <sxiang@pinterest.com>

Closes #346 from coderxiang/typo and squashes the following commits:

acf5274 [Shuo Xiang] change partitioningoperator to partitionoperator
89b460a [Shuo Xiang] fix typos
  • Loading branch information
coderxiang authored and hsaputra committed Jan 30, 2015
1 parent 9849990 commit f7e84c1
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 5 deletions.
Expand Up @@ -36,10 +36,10 @@
import org.junit.Test;

@SuppressWarnings("serial")
public class PartitioningOperatorTest extends CompilerTestBase {
public class PartitionOperatorTest extends CompilerTestBase {

@Test
public void testPartitiongOperatorPreservesFields() {
public void testPartitionOperatorPreservesFields() {
try {
ExecutionEnvironment env = ExecutionEnvironment.getExecutionEnvironment();

Expand Down
Expand Up @@ -31,8 +31,8 @@ import scala.collection.JavaConverters._
* This example implements a basic Linear Regression to solve the y = theta0 + theta1*x problem
* using batch gradient descent algorithm.
*
* Linear Regression with BGD(batch gradient descent) algorithm is an iterative clustering
* algorithm and works as follows:
* Linear Regression with BGD(batch gradient descent) algorithm is an iterative algorithm and
* works as follows:
*
* Giving a data set and target set, the BGD try to find out the best parameters for the data set
* to fit the target set.
Expand Down
Expand Up @@ -29,7 +29,7 @@ import org.apache.flink.api.common.functions.Partitioner
class PartitionOperatorTranslationTest extends CompilerTestBase {

@Test
def testPartitiongOperatorPreservesFields() {
def testPartitionOperatorPreservesFields() {
try {
val env = ExecutionEnvironment.getExecutionEnvironment

Expand Down

0 comments on commit f7e84c1

Please sign in to comment.