aboutsummaryrefslogtreecommitdiff
path: root/examples
diff options
context:
space:
mode:
authorJacky Li <jackylk@users.noreply.github.com>2015-02-21 13:00:16 +0000
committerSean Owen <sowen@cloudera.com>2015-02-21 13:00:16 +0000
commite155324711740da97698b93526128b0eae2dc0ce (patch)
tree7b98431bf02dbaf5bcbd03cff3e55128e669b328 /examples
parent5b0a42cb17b840c82d3f8a5ad061d99e261ceadf (diff)
downloadspark-e155324711740da97698b93526128b0eae2dc0ce.tar.gz
spark-e155324711740da97698b93526128b0eae2dc0ce.tar.bz2
spark-e155324711740da97698b93526128b0eae2dc0ce.zip
[MLlib] fix typo
fix typo: it should be "default:" instead of "default;" Author: Jacky Li <jackylk@users.noreply.github.com> Closes #4713 from jackylk/patch-10 and squashes the following commits: 15daf2e [Jacky Li] [MLlib] fix typo
Diffstat (limited to 'examples')
-rw-r--r--examples/src/main/scala/org/apache/spark/examples/mllib/DenseKMeans.scala2
1 files changed, 1 insertions, 1 deletions
diff --git a/examples/src/main/scala/org/apache/spark/examples/mllib/DenseKMeans.scala b/examples/src/main/scala/org/apache/spark/examples/mllib/DenseKMeans.scala
index 11e35598ba..14cc5cbb67 100644
--- a/examples/src/main/scala/org/apache/spark/examples/mllib/DenseKMeans.scala
+++ b/examples/src/main/scala/org/apache/spark/examples/mllib/DenseKMeans.scala
@@ -56,7 +56,7 @@ object DenseKMeans {
.text(s"number of clusters, required")
.action((x, c) => c.copy(k = x))
opt[Int]("numIterations")
- .text(s"number of iterations, default; ${defaultParams.numIterations}")
+ .text(s"number of iterations, default: ${defaultParams.numIterations}")
.action((x, c) => c.copy(numIterations = x))
opt[String]("initMode")
.text(s"initialization mode (${InitializationMode.values.mkString(",")}), " +