@@ -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