Skip to content

Commit 6d27fff

Browse files
committed
Fix failing doc build
1 parent 3d5d8a6 commit 6d27fff

File tree

1 file changed

+4
-4
lines changed
  • mllib/src/main/scala/org/apache/spark/ml/recommendation

1 file changed

+4
-4
lines changed

mllib/src/main/scala/org/apache/spark/ml/recommendation/ALS.scala

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -976,12 +976,12 @@ object ALS extends DefaultParamsReadable[ALS] with Logging {
976976
* In summary, the data structure encodes the following information:
977977
*
978978
* * There are ratings with user IDs 0 and 6 (encoded in `Array(0, 1)`, where 0 and 1 are the
979-
* indices of the user IDs 0 and 6 on partition 0) whose item IDs map to partitions 0 and 1
980-
* (represented by the fact that `Array(0, 1)` appears in both the 0th and 1st positions).
979+
* indices of the user IDs 0 and 6 on partition 0) whose item IDs map to partitions 0 and 1
980+
* (represented by the fact that `Array(0, 1)` appears in both the 0th and 1st positions).
981981
*
982982
* * There are ratings with user ID 3 (encoded in `Array(0)`, where 0 is the index of the user
983-
* ID 3 on partition 1) whose item IDs map to partitions 0 and 1 (represented by the fact
984-
* that `Array(0)` appears in both the 0th and 1st positions).
983+
* ID 3 on partition 1) whose item IDs map to partitions 0 and 1 (represented by the fact that
984+
* `Array(0)` appears in both the 0th and 1st positions).
985985
*/
986986
private type OutBlock = Array[Array[Int]]
987987

0 commit comments

Comments
 (0)