From 62cd12656b5ec85a21aef35422d64de814f4b919 Mon Sep 17 00:00:00 2001 From: Jacky Li Date: Tue, 18 Nov 2014 19:23:58 +0800 Subject: [PATCH] [SQL] fix function description mistake Sample code in description of SchemaRDD.where is not correct --- sql/core/src/main/scala/org/apache/spark/sql/SchemaRDD.scala | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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