Meaning of _2 sign in scala language

Viewed 8368

What does the _2 mean in the following code? Where can I find the official documentation for this?

.. 
@if(errors) {
    <p class="error">
        @errors.head._2
    </p>
}
...
4 Answers
Related