Chapter 8. The Theme System, Page 195

Location on the page: 
Two-thirds down the page
Chapter: 
8. The Theme System
Error: 


/**
* Implementation of hook_theme().
*/
foo_theme() {
return array(
'breadcrumb' => array(
'arguments' => array('breadcrumb' => NULL),
),
);
}

Correction: 


/**
* Implementation of hook_theme().
*/
function foo_theme() {
return array(
'breadcrumb' => array(
'arguments' => array('breadcrumb' => NULL),
),
);
}

Description of the Error: 

'function' is missing from code snippet