| title | Errata |
|---|
This page lists errata for Play for Scala, first edition (October 2013).
Section 7.4.6, page 192. The sentence
The keys of the data that you bind to this form are of the form
main_contact.name,main_contact.email, thentechnical_contact.text,technical_contact.email, and finallyadministrative_contact.textandadministrative_contact.email."
should be
The keys of the data that you bind to this form are of the form
main_contact.name,main_contact.email, thentechnical_contact.name,technical_contact.email, and finallyadministrative_contact.nameandadministrative_contact.email."
Section 10.4.1, page 287. The question mark (?) in the sentence
BodyParser is a trait that extends (RequestHeader) ? Iteratee[Array[Byte], Either[Result, A]].
should be a Unicode “RIGHTWARDS DOUBLE ARROW” (⇒) or, alternatively the ASCII equivalent (=>)
BodyParser is a trait that extends (RequestHeader) ⇒ Iteratee[Array[Byte], Either[Result, A]].