You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@spark.apache.org by pw...@apache.org on 2014/05/03 09:17:45 UTC

git commit: Update SchemaRDD.scala

Repository: spark
Updated Branches:
  refs/heads/master 0a1442176 -> 9347565f4


Update SchemaRDD.scala

Modify spelling errors

Author: ArcherShao <Ar...@users.noreply.github.com>

Closes #619 from ArcherShao/patch-1 and squashes the following commits:

2957195 [ArcherShao] Update SchemaRDD.scala


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

Branch: refs/heads/master
Commit: 9347565f4188cf1574c6dc49fcde91eb286be955
Parents: 0a14421
Author: ArcherShao <Ar...@users.noreply.github.com>
Authored: Sat May 3 00:17:36 2014 -0700
Committer: Patrick Wendell <pw...@gmail.com>
Committed: Sat May 3 00:17:36 2014 -0700

----------------------------------------------------------------------
 sql/core/src/main/scala/org/apache/spark/sql/SchemaRDD.scala | 8 ++++----
 1 file changed, 4 insertions(+), 4 deletions(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/spark/blob/9347565f/sql/core/src/main/scala/org/apache/spark/sql/SchemaRDD.scala
----------------------------------------------------------------------
diff --git a/sql/core/src/main/scala/org/apache/spark/sql/SchemaRDD.scala b/sql/core/src/main/scala/org/apache/spark/sql/SchemaRDD.scala
index ca6e0a6..d7782d6 100644
--- a/sql/core/src/main/scala/org/apache/spark/sql/SchemaRDD.scala
+++ b/sql/core/src/main/scala/org/apache/spark/sql/SchemaRDD.scala
@@ -133,7 +133,7 @@ class SchemaRDD(
     new SchemaRDD(sqlContext, Project(exprs, logicalPlan))
 
   /**
-   * Filters the ouput, only returning those rows where `condition` evaluates to true.
+   * Filters the output, only returning those rows where `condition` evaluates to true.
    *
    * {{{
    *   schemaRDD.where('a === 'b)
@@ -151,9 +151,9 @@ class SchemaRDD(
    *
    * @param otherPlan the [[SchemaRDD]] that should be joined with this one.
    * @param joinType One of `Inner`, `LeftOuter`, `RightOuter`, or `FullOuter`. Defaults to `Inner.`
-   * @param on       An optional condition for the join operation.  This is equivilent to the `ON`
+   * @param on       An optional condition for the join operation.  This is equivalent to the `ON`
    *                 clause in standard SQL.  In the case of `Inner` joins, specifying a
-   *                 `condition` is equivilent to adding `where` clauses after the `join`.
+   *                 `condition` is equivalent to adding `where` clauses after the `join`.
    *
    * @group Query
    */
@@ -195,7 +195,7 @@ class SchemaRDD(
 
   /**
    * Applies a qualifier to the attributes of this relation.  Can be used to disambiguate attributes
-   * with the same name, for example, when peforming self-joins.
+   * with the same name, for example, when performing self-joins.
    *
    * {{{
    *   val x = schemaRDD.where('a === 1).as('x)