aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorRadek Ostrowski <dest.hawaii@gmail.com>2015-06-16 21:04:26 +0100
committerSean Owen <sowen@cloudera.com>2015-06-16 21:04:26 +0100
commit4bd10fd5090fb5f4f139267b82e9f2fc15659796 (patch)
tree41098c27df8498b091a4d8beee24804f7b49a32b
parentdc455b88330f79b1181a585277ea9ed3e0763703 (diff)
downloadspark-4bd10fd5090fb5f4f139267b82e9f2fc15659796.tar.gz
spark-4bd10fd5090fb5f4f139267b82e9f2fc15659796.tar.bz2
spark-4bd10fd5090fb5f4f139267b82e9f2fc15659796.zip
[SQL] [DOC] improved a comment
[SQL][DOC] I found it a bit confusing when I came across it for the first time in the docs Author: Radek Ostrowski <dest.hawaii@gmail.com> Author: radek <radek@radeks-MacBook-Pro-2.local> Closes #6332 from radek1st/master and squashes the following commits: dae3347 [Radek Ostrowski] fixed typo c76bb3a [radek] improved a comment
-rw-r--r--docs/configuration.md2
-rw-r--r--sql/core/src/main/scala/org/apache/spark/sql/DataFrame.scala2
2 files changed, 2 insertions, 2 deletions
diff --git a/docs/configuration.md b/docs/configuration.md
index 95a322f79b..affcd21514 100644
--- a/docs/configuration.md
+++ b/docs/configuration.md
@@ -334,7 +334,7 @@ Apart from these, the following properties are also available, and may be useful
<td>
Enable profiling in Python worker, the profile result will show up by `sc.show_profiles()`,
or it will be displayed before the driver exiting. It also can be dumped into disk by
- `sc.dump_profiles(path)`. If some of the profile results had been displayed maually,
+ `sc.dump_profiles(path)`. If some of the profile results had been displayed manually,
they will not be displayed automatically before driver exiting.
By default the `pyspark.profiler.BasicProfiler` will be used, but this can be overridden by
diff --git a/sql/core/src/main/scala/org/apache/spark/sql/DataFrame.scala b/sql/core/src/main/scala/org/apache/spark/sql/DataFrame.scala
index 9ca168881c..444916bbad 100644
--- a/sql/core/src/main/scala/org/apache/spark/sql/DataFrame.scala
+++ b/sql/core/src/main/scala/org/apache/spark/sql/DataFrame.scala
@@ -619,7 +619,7 @@ class DataFrame private[sql](
def as(alias: Symbol): DataFrame = as(alias.name)
/**
- * Selects a set of expressions.
+ * Selects a set of column based expressions.
* {{{
* df.select($"colA", $"colB" + 1)
* }}}