Repository: spark
Updated Branches:
  refs/heads/master ee74498de -> 83507fea9


[SQL] Minor Scaladoc format fix

Otherwise the `^` character is always marked as error in IntelliJ since it 
represents an unclosed superscript markup tag.

Author: Cheng Lian <l...@databricks.com>

Closes #10926 from liancheng/agg-doc-fix.


Project: http://git-wip-us.apache.org/repos/asf/spark/repo
Commit: http://git-wip-us.apache.org/repos/asf/spark/commit/83507fea
Tree: http://git-wip-us.apache.org/repos/asf/spark/tree/83507fea
Diff: http://git-wip-us.apache.org/repos/asf/spark/diff/83507fea

Branch: refs/heads/master
Commit: 83507fea9f45c336d73dd4795b8cb37bcd63e31d
Parents: ee74498
Author: Cheng Lian <l...@databricks.com>
Authored: Tue Jan 26 14:29:29 2016 -0800
Committer: Cheng Lian <l...@databricks.com>
Committed: Tue Jan 26 14:29:29 2016 -0800

----------------------------------------------------------------------
 .../sql/catalyst/expressions/aggregate/interfaces.scala      | 8 ++++----
 1 file changed, 4 insertions(+), 4 deletions(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/spark/blob/83507fea/sql/catalyst/src/main/scala/org/apache/spark/sql/catalyst/expressions/aggregate/interfaces.scala
----------------------------------------------------------------------
diff --git 
a/sql/catalyst/src/main/scala/org/apache/spark/sql/catalyst/expressions/aggregate/interfaces.scala
 
b/sql/catalyst/src/main/scala/org/apache/spark/sql/catalyst/expressions/aggregate/interfaces.scala
index ddd99c5..561fa33 100644
--- 
a/sql/catalyst/src/main/scala/org/apache/spark/sql/catalyst/expressions/aggregate/interfaces.scala
+++ 
b/sql/catalyst/src/main/scala/org/apache/spark/sql/catalyst/expressions/aggregate/interfaces.scala
@@ -200,7 +200,7 @@ abstract class ImperativeAggregate extends 
AggregateFunction with CodegenFallbac
    * For example, we have two aggregate functions `avg(x)` and `avg(y)`, which 
share the same
    * aggregation buffer. In this shared buffer, the position of the first 
buffer value of `avg(x)`
    * will be 0 and the position of the first buffer value of `avg(y)` will be 
2:
-   *
+   * {{{
    *          avg(x) mutableAggBufferOffset = 0
    *                  |
    *                  v
@@ -210,7 +210,7 @@ abstract class ImperativeAggregate extends 
AggregateFunction with CodegenFallbac
    *                                    ^
    *                                    |
    *                     avg(y) mutableAggBufferOffset = 2
-   *
+   * }}}
    */
   protected val mutableAggBufferOffset: Int
 
@@ -233,7 +233,7 @@ abstract class ImperativeAggregate extends 
AggregateFunction with CodegenFallbac
    * `avg(x)` and `avg(y)`. In the shared input aggregation buffer, the 
position of the first
    * buffer value of `avg(x)` will be 1 and the position of the first buffer 
value of `avg(y)`
    * will be 3 (position 0 is used for the value of `key`):
-   *
+   * {{{
    *          avg(x) inputAggBufferOffset = 1
    *                   |
    *                   v
@@ -243,7 +243,7 @@ abstract class ImperativeAggregate extends 
AggregateFunction with CodegenFallbac
    *                                     ^
    *                                     |
    *                       avg(y) inputAggBufferOffset = 3
-   *
+   * }}}
    */
   protected val inputAggBufferOffset: Int
 


---------------------------------------------------------------------
To unsubscribe, e-mail: commits-unsubscr...@spark.apache.org
For additional commands, e-mail: commits-h...@spark.apache.org

Reply via email to