aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorFelix Cheung <felixcheung_m@hotmail.com>2017-04-17 23:55:40 -0700
committerFelix Cheung <felixcheung@apache.org>2017-04-17 23:55:40 -0700
commitb0a1e93e93167b53058525a20a8b06f7df5f09a2 (patch)
treea108009fa65467c134c2b3a16a7d5e2ca6b0370c
parent33ea908af94152147e996a6dc8da41ada27d5af3 (diff)
downloadspark-b0a1e93e93167b53058525a20a8b06f7df5f09a2.tar.gz
spark-b0a1e93e93167b53058525a20a8b06f7df5f09a2.tar.bz2
spark-b0a1e93e93167b53058525a20a8b06f7df5f09a2.zip
[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 <felixcheung_m@hotmail.com> Closes #17663 from felixcheung/likedoctypo.
-rw-r--r--sql/catalyst/src/main/scala/org/apache/spark/sql/catalyst/expressions/regexpExpressions.scala2
1 files changed, 1 insertions, 1 deletions
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 a36da8e94b..3fa84589e3 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
@@ -79,7 +79,7 @@ abstract class StringRegexExpression extends BinaryExpression
_ 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