aboutsummaryrefslogtreecommitdiff
path: root/sql/catalyst
diff options
context:
space:
mode:
authorbomeng <bmeng@us.ibm.com>2016-04-09 22:30:54 +0900
committerKousuke Saruta <sarutak@oss.nttdata.co.jp>2016-04-09 22:30:54 +0900
commit10a95781ee8685d1473b156715b905c83af2aab0 (patch)
tree3e87345b3ae983122a5c183b9e1fe3ecc24c1797 /sql/catalyst
parenta9b8b655b25f4ed519037faaf7601a3d9842547f (diff)
downloadspark-10a95781ee8685d1473b156715b905c83af2aab0.tar.gz
spark-10a95781ee8685d1473b156715b905c83af2aab0.tar.bz2
spark-10a95781ee8685d1473b156715b905c83af2aab0.zip
[SPARK-14496][SQL] fix some javadoc typos
## What changes were proposed in this pull request? Minor issues. Found 2 typos while browsing the code. ## How was this patch tested? None. Author: bomeng <bmeng@us.ibm.com> Closes #12264 from bomeng/SPARK-14496.
Diffstat (limited to 'sql/catalyst')
-rw-r--r--sql/catalyst/src/main/scala/org/apache/spark/sql/catalyst/util/StringUtils.scala2
1 files changed, 1 insertions, 1 deletions
diff --git a/sql/catalyst/src/main/scala/org/apache/spark/sql/catalyst/util/StringUtils.scala b/sql/catalyst/src/main/scala/org/apache/spark/sql/catalyst/util/StringUtils.scala
index 0f65028261..cde8bd5b96 100644
--- a/sql/catalyst/src/main/scala/org/apache/spark/sql/catalyst/util/StringUtils.scala
+++ b/sql/catalyst/src/main/scala/org/apache/spark/sql/catalyst/util/StringUtils.scala
@@ -57,7 +57,7 @@ object StringUtils {
* This utility can be used for filtering pattern in the "Like" of "Show Tables / Functions" DDL
* @param names the names list to be filtered
* @param pattern the filter pattern, only '*' and '|' are allowed as wildcards, others will
- * follows regular expression convention, case insensitive match and white spaces
+ * follow regular expression convention, case insensitive match and white spaces
* on both ends will be ignored
* @return the filtered names list in order
*/