Page Chapter 10. The Form API, Page 181

Location on the page: 
top code sample
Error: 

$form['weight'] = array('#type' => 'weight',

Correction: 

$form['weight'] = array(
'#type' => 'weight',

Description of the Error: 

For consistency purposes and readability the property setting should start on the following line as it does elsewhere throughout the book.