Under the title "Creating a Parallel Collection" (https://github.com/scala/scala.github.com/blob/master/overviews/parallel-collections/overview.md) I think this is wrong:
import scala.collection.parallel.mutable.ParArray
val pv = new ParVector[Int]
We've two options:
import scala.collection.parallel.immutable.ParVector
val pv = new ParVector[Int]
import scala.collection.parallel.immutable.ParArray
val pa = new ParArray[Int]
What do you think?