Repository: spark Updated Branches: refs/heads/branch-2.1 3808b4728 -> a4c1ebc1d
[SPARK-17647][SQL][FOLLOWUP][MINOR] fix typo ## What changes were proposed in this pull request? fix typo ## How was this patch tested? manual Author: Felix Cheung <felixcheun...@hotmail.com> Closes #17663 from felixcheung/likedoctypo. (cherry picked from commit b0a1e93e93167b53058525a20a8b06f7df5f09a2) Signed-off-by: Felix Cheung <felixche...@apache.org> Project: http://git-wip-us.apache.org/repos/asf/spark/repo Commit: http://git-wip-us.apache.org/repos/asf/spark/commit/a4c1ebc1 Tree: http://git-wip-us.apache.org/repos/asf/spark/tree/a4c1ebc1 Diff: http://git-wip-us.apache.org/repos/asf/spark/diff/a4c1ebc1 Branch: refs/heads/branch-2.1 Commit: a4c1ebc1ddf87eb557989c0d9bbcfe73e83ec01e Parents: 3808b47 Author: Felix Cheung <felixcheun...@hotmail.com> Authored: Mon Apr 17 23:55:40 2017 -0700 Committer: Felix Cheung <felixche...@apache.org> Committed: Mon Apr 17 23:59:31 2017 -0700 ---------------------------------------------------------------------- .../apache/spark/sql/catalyst/expressions/regexpExpressions.scala | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) ---------------------------------------------------------------------- http://git-wip-us.apache.org/repos/asf/spark/blob/a4c1ebc1/sql/catalyst/src/main/scala/org/apache/spark/sql/catalyst/expressions/regexpExpressions.scala ---------------------------------------------------------------------- diff --git a/sql/catalyst/src/main/scala/org/apache/spark/sql/catalyst/expressions/regexpExpressions.scala b/sql/catalyst/src/main/scala/org/apache/spark/sql/catalyst/expressions/regexpExpressions.scala index 0325d0e..a7fccfc 100644 --- a/sql/catalyst/src/main/scala/org/apache/spark/sql/catalyst/expressions/regexpExpressions.scala +++ b/sql/catalyst/src/main/scala/org/apache/spark/sql/catalyst/expressions/regexpExpressions.scala @@ -78,7 +78,7 @@ trait StringRegexExpression extends ImplicitCastInputTypes { _ matches any one character in the input (similar to . in posix regular expressions) - % matches zero ore more characters in the input (similar to .* in posix regular + % matches zero or more characters in the input (similar to .* in posix regular expressions) The escape character is '\'. If an escape character precedes a special symbol or another --------------------------------------------------------------------- To unsubscribe, e-mail: commits-unsubscr...@spark.apache.org For additional commands, e-mail: commits-h...@spark.apache.org