Skip to content

Commit

Permalink
[MLlib] fix typo
Browse files Browse the repository at this point in the history
fix typo: it should be "default:" instead of "default;"

Author: Jacky Li <[email protected]>

Closes #4713 from jackylk/patch-10 and squashes the following commits:

15daf2e [Jacky Li] [MLlib] fix typo
  • Loading branch information
jackylk authored and srowen committed Feb 21, 2015
1 parent 5b0a42c commit e155324
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -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(",")}), " +
Expand Down

0 comments on commit e155324

Please sign in to comment.