@@ -133,7 +133,7 @@ class SchemaRDD(
133
133
new SchemaRDD (sqlContext, Project (exprs, logicalPlan))
134
134
135
135
/**
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.
137
137
*
138
138
* {{{
139
139
* schemaRDD.where('a === 'b)
@@ -151,9 +151,9 @@ class SchemaRDD(
151
151
*
152
152
* @param otherPlan the [[SchemaRDD ]] that should be joined with this one.
153
153
* @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`
155
155
* 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`.
157
157
*
158
158
* @group Query
159
159
*/
@@ -195,7 +195,7 @@ class SchemaRDD(
195
195
196
196
/**
197
197
* 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.
199
199
*
200
200
* {{{
201
201
* val x = schemaRDD.where('a === 1).as('x)
0 commit comments