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 fbec2f9f4b2c1..1754734f5e5dd 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 @@ -290,7 +290,7 @@ class SchemaRDD( * Filters tuples using a function over the value of the specified column. * * {{{ - * schemaRDD.sfilter('a)((a: Int) => ...) + * schemaRDD.where('a)((a: Int) => ...) * }}} * * @group Query