Skip to content

Commit

Permalink
scaladoc typos
Browse files Browse the repository at this point in the history
  • Loading branch information
chenghao-intel committed May 21, 2015
1 parent f3fd2d0 commit 3b1865f
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions sql/core/src/main/scala/org/apache/spark/sql/Column.scala
Original file line number Diff line number Diff line change
Expand Up @@ -894,8 +894,8 @@ class Column(protected[sql] val expr: Expression) extends Logging {
* {{{
* val w = partitionBy("name").orderBy("id")
* df.select(
* sum("price").over(w).range.preceding(2),
* avg("price").over(w).range.preceding(4),
* sum("price").over(w.range.preceding(2)),
* avg("price").over(w.range.preceding(4)),
* avg("price").over(partitionBy("name").orderBy("id).range.preceding(1))
* )
* }}}
Expand Down

0 comments on commit 3b1865f

Please sign in to comment.