Skip to content

Commit 56205d2

Browse files
author
Nick Pentreath
committed
Fix incorrect bracket
1 parent 0118f2c commit 56205d2

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

python/pyspark/mllib/linalg/distributed.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -329,7 +329,7 @@ def computeSVD(self, k, computeU=False, rCond=1e-9):
329329
where s[0] is the largest singular value.
330330
:returns: :py:class:`SingularValueDecomposition`
331331
332-
>>> rows = sc.parallelize[[3, 1, 1], [-1, 3, 1]]
332+
>>> rows = sc.parallelize([[3, 1, 1], [-1, 3, 1]])
333333
>>> rm = RowMatrix(rows)
334334
335335
>>> svd_model = rm.computeSVD(2, True)

0 commit comments

Comments
 (0)