Repository: spark
Updated Branches:
  refs/heads/master a791c29bd -> 7822c3f8d


[SPARK-25082][SQL] improve the javadoc for expm1()

## What changes were proposed in this pull request?
Correct the javadoc for expm1() function.

## How was this patch tested?
None. It is a minor issue.

Closes #22115 from bomeng/25082.

Authored-by: Bo Meng <bo.m...@jd.com>
Signed-off-by: hyukjinkwon <gurwls...@apache.org>


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

Branch: refs/heads/master
Commit: 7822c3f8d1da9ecf9fe2fd422c4ee3f769976d43
Parents: a791c29
Author: Bo Meng <bo.m...@jd.com>
Authored: Thu Aug 16 14:14:42 2018 +0800
Committer: hyukjinkwon <gurwls...@apache.org>
Committed: Thu Aug 16 14:14:42 2018 +0800

----------------------------------------------------------------------
 sql/core/src/main/scala/org/apache/spark/sql/functions.scala | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/spark/blob/7822c3f8/sql/core/src/main/scala/org/apache/spark/sql/functions.scala
----------------------------------------------------------------------
diff --git a/sql/core/src/main/scala/org/apache/spark/sql/functions.scala 
b/sql/core/src/main/scala/org/apache/spark/sql/functions.scala
index 5a6ed59..c933188 100644
--- a/sql/core/src/main/scala/org/apache/spark/sql/functions.scala
+++ b/sql/core/src/main/scala/org/apache/spark/sql/functions.scala
@@ -1660,7 +1660,7 @@ object functions {
   def expm1(e: Column): Column = withExpr { Expm1(e.expr) }
 
   /**
-   * Computes the exponential of the given column.
+   * Computes the exponential of the given column minus one.
    *
    * @group math_funcs
    * @since 1.4.0


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

Reply via email to