Skip to content

Commit 9347565

Browse files
ArcherShaopwendell
authored andcommitted
Update SchemaRDD.scala
Modify spelling errors Author: ArcherShao <[email protected]> Closes #619 from ArcherShao/patch-1 and squashes the following commits: 2957195 [ArcherShao] Update SchemaRDD.scala
1 parent 0a14421 commit 9347565

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

sql/core/src/main/scala/org/apache/spark/sql/SchemaRDD.scala

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -133,7 +133,7 @@ class SchemaRDD(
133133
new SchemaRDD(sqlContext, Project(exprs, logicalPlan))
134134

135135
/**
136-
* Filters the ouput, only returning those rows where `condition` evaluates to true.
136+
* Filters the output, only returning those rows where `condition` evaluates to true.
137137
*
138138
* {{{
139139
* schemaRDD.where('a === 'b)
@@ -151,9 +151,9 @@ class SchemaRDD(
151151
*
152152
* @param otherPlan the [[SchemaRDD]] that should be joined with this one.
153153
* @param joinType One of `Inner`, `LeftOuter`, `RightOuter`, or `FullOuter`. Defaults to `Inner.`
154-
* @param on An optional condition for the join operation. This is equivilent to the `ON`
154+
* @param on An optional condition for the join operation. This is equivalent to the `ON`
155155
* clause in standard SQL. In the case of `Inner` joins, specifying a
156-
* `condition` is equivilent to adding `where` clauses after the `join`.
156+
* `condition` is equivalent to adding `where` clauses after the `join`.
157157
*
158158
* @group Query
159159
*/
@@ -195,7 +195,7 @@ class SchemaRDD(
195195

196196
/**
197197
* Applies a qualifier to the attributes of this relation. Can be used to disambiguate attributes
198-
* with the same name, for example, when peforming self-joins.
198+
* with the same name, for example, when performing self-joins.
199199
*
200200
* {{{
201201
* val x = schemaRDD.where('a === 1).as('x)

0 commit comments

Comments
 (0)