Skip to content

Commit a6952c3

Browse files
committed
fix scala style for comments
1 parent 50abef3 commit a6952c3

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

mllib/src/main/scala/org/apache/spark/mllib/linalg/Vectors.scala

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -460,7 +460,7 @@ class SparseVector(
460460
while (k2 < v.values.size && v.values(k2) == 0) k2 += 1
461461

462462
if (k1 == this.values.size || k2 == v.values.size) {
463-
return (k1 == this.values.size && k2 == v.values.size) //check end alignment
463+
return (k1 == this.values.size && k2 == v.values.size) // check end alignment
464464
}
465465
if (this.indices(k1) != v.indices(k2) || this.values(k1) != v.values(k2)) {
466466
return false

0 commit comments

Comments
 (0)