Repository: spark Updated Branches: refs/heads/master b1feb6020 -> f4dd665c8
Fixed a typo in RowMatrix.scala Author: DB Tsai <[email protected]> Closes #959 from dbtsai/dbtsai-typo and squashes the following commits: fab0e0e [DB Tsai] Fixed typo Project: http://git-wip-us.apache.org/repos/asf/spark/repo Commit: http://git-wip-us.apache.org/repos/asf/spark/commit/f4dd665c Tree: http://git-wip-us.apache.org/repos/asf/spark/tree/f4dd665c Diff: http://git-wip-us.apache.org/repos/asf/spark/diff/f4dd665c Branch: refs/heads/master Commit: f4dd665c85713d4c09731080fca58aee0fa2a85a Parents: b1feb60 Author: DB Tsai <[email protected]> Authored: Tue Jun 3 18:10:58 2014 -0700 Committer: Patrick Wendell <[email protected]> Committed: Tue Jun 3 18:10:58 2014 -0700 ---------------------------------------------------------------------- .../org/apache/spark/mllib/linalg/distributed/RowMatrix.scala | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) ---------------------------------------------------------------------- http://git-wip-us.apache.org/repos/asf/spark/blob/f4dd665c/mllib/src/main/scala/org/apache/spark/mllib/linalg/distributed/RowMatrix.scala ---------------------------------------------------------------------- diff --git a/mllib/src/main/scala/org/apache/spark/mllib/linalg/distributed/RowMatrix.scala b/mllib/src/main/scala/org/apache/spark/mllib/linalg/distributed/RowMatrix.scala index 07dfadf..00d0b18 100644 --- a/mllib/src/main/scala/org/apache/spark/mllib/linalg/distributed/RowMatrix.scala +++ b/mllib/src/main/scala/org/apache/spark/mllib/linalg/distributed/RowMatrix.scala @@ -416,7 +416,7 @@ class RowMatrix( mat } - /** Updates or verfires the number of rows. */ + /** Updates or verifies the number of rows. */ private def updateNumRows(m: Long) { if (nRows <= 0) { nRows == m
