Page Chapter 10. The Form API, Page 165

Location on the page: 
1st Paragraph
Error: 

if (!in_array($element['#value'], $allowed_flavors) {

Correction: 

if (!in_array($element['#value'], $allowed_flavors)) {

Description of the Error: 

Code error, missing right bracket.