aboutsummaryrefslogtreecommitdiff
path: root/mllib
diff options
context:
space:
mode:
authorDavies Liu <davies@databricks.com>2015-08-14 20:56:55 -0700
committerReynold Xin <rxin@databricks.com>2015-08-14 20:56:55 -0700
commit37586e5449ff8f892d41f0b6b8fa1de83dd3849e (patch)
tree40ae7de2cc5c3f64891aed0c2e96d994398d34e2 /mllib
parente5fd60415fbfea2c5c02602f7ddbc999dd058064 (diff)
downloadspark-37586e5449ff8f892d41f0b6b8fa1de83dd3849e.tar.gz
spark-37586e5449ff8f892d41f0b6b8fa1de83dd3849e.tar.bz2
spark-37586e5449ff8f892d41f0b6b8fa1de83dd3849e.zip
[HOTFIX] fix duplicated braces
Author: Davies Liu <davies@databricks.com> Closes #8219 from davies/fix_typo.
Diffstat (limited to 'mllib')
-rw-r--r--mllib/src/main/scala/org/apache/spark/mllib/linalg/BLAS.scala2
1 files changed, 1 insertions, 1 deletions
diff --git a/mllib/src/main/scala/org/apache/spark/mllib/linalg/BLAS.scala b/mllib/src/main/scala/org/apache/spark/mllib/linalg/BLAS.scala
index 9029093e0f..bbbcc8436b 100644
--- a/mllib/src/main/scala/org/apache/spark/mllib/linalg/BLAS.scala
+++ b/mllib/src/main/scala/org/apache/spark/mllib/linalg/BLAS.scala
@@ -469,7 +469,7 @@ private[spark] object BLAS extends Serializable with Logging {
require(A.numCols == x.size,
s"The columns of A don't match the number of elements of x. A: ${A.numCols}, x: ${x.size}")
require(A.numRows == y.size,
- s"The rows of A don't match the number of elements of y. A: ${A.numRows}, y:${y.size}}")
+ s"The rows of A don't match the number of elements of y. A: ${A.numRows}, y:${y.size}")
if (alpha == 0.0) {
logDebug("gemv: alpha is equal to 0. Returning y.")
} else {