Repository: spark Updated Branches: refs/heads/master 01849da08 -> 1803bf633
Fix typo in ALS.scala ## What changes were proposed in this pull request? Just a typo ## How was this patch tested? N/A Author: Juarez Bochi <[email protected]> Closes #11896 from jbochi/patch-1. Project: http://git-wip-us.apache.org/repos/asf/spark/repo Commit: http://git-wip-us.apache.org/repos/asf/spark/commit/1803bf63 Tree: http://git-wip-us.apache.org/repos/asf/spark/tree/1803bf63 Diff: http://git-wip-us.apache.org/repos/asf/spark/diff/1803bf63 Branch: refs/heads/master Commit: 1803bf63338ff20cf983e60724d169f62a1663c2 Parents: 01849da Author: Juarez Bochi <[email protected]> Authored: Thu Mar 24 09:24:00 2016 +0000 Committer: Sean Owen <[email protected]> Committed: Thu Mar 24 09:24:00 2016 +0000 ---------------------------------------------------------------------- mllib/src/main/scala/org/apache/spark/ml/recommendation/ALS.scala | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) ---------------------------------------------------------------------- http://git-wip-us.apache.org/repos/asf/spark/blob/1803bf63/mllib/src/main/scala/org/apache/spark/ml/recommendation/ALS.scala ---------------------------------------------------------------------- diff --git a/mllib/src/main/scala/org/apache/spark/ml/recommendation/ALS.scala b/mllib/src/main/scala/org/apache/spark/ml/recommendation/ALS.scala index 091ca35..4a3ad66 100644 --- a/mllib/src/main/scala/org/apache/spark/ml/recommendation/ALS.scala +++ b/mllib/src/main/scala/org/apache/spark/ml/recommendation/ALS.scala @@ -1300,7 +1300,7 @@ object ALS extends DefaultParamsReadable[ALS] with Logging { } /** - * Partitioner used by ALS. We requires that getPartition is a projection. That is, for any key k, + * Partitioner used by ALS. We require that getPartition is a projection. That is, for any key k, * we have getPartition(getPartition(k)) = getPartition(k). Since the default HashPartitioner * satisfies this requirement, we simply use a type alias here. */ --------------------------------------------------------------------- To unsubscribe, e-mail: [email protected] For additional commands, e-mail: [email protected]
