Repository: spark Updated Branches: refs/heads/master 2b10ebe6a -> bfda53f63
Typo: Fow -> For Author: Andrew Ash <[email protected]> Closes #14563 from ash211/patch-8. Project: http://git-wip-us.apache.org/repos/asf/spark/repo Commit: http://git-wip-us.apache.org/repos/asf/spark/commit/bfda53f6 Tree: http://git-wip-us.apache.org/repos/asf/spark/tree/bfda53f6 Diff: http://git-wip-us.apache.org/repos/asf/spark/diff/bfda53f6 Branch: refs/heads/master Commit: bfda53f63a31bf2e8b72ab9e85896a4bec1644e8 Parents: 2b10ebe Author: Andrew Ash <[email protected]> Authored: Wed Aug 10 10:09:35 2016 +0100 Committer: Sean Owen <[email protected]> Committed: Wed Aug 10 10:09:35 2016 +0100 ---------------------------------------------------------------------- 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/bfda53f6/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 93af845..81f6ed7 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 @@ -820,7 +820,7 @@ object functions { /** * Window function: returns the ntile group id (from 1 to `n` inclusive) in an ordered window - * partition. Fow example, if `n` is 4, the first quarter of the rows will get value 1, the second + * partition. For example, if `n` is 4, the first quarter of the rows will get value 1, the second * quarter will get 2, the third quarter will get 3, and the last quarter will get 4. * * This is equivalent to the NTILE function in SQL. --------------------------------------------------------------------- To unsubscribe, e-mail: [email protected] For additional commands, e-mail: [email protected]
