Reports accessing the first element of a collection by index instead of head.

Example:


  var seq: Seq[Int]
  seq(0)
  seq.apply(0)

After the quick-fix is applied:


  var seq: Seq[Int]
  seq.head
  seq.head