Page Chapter 4. The Menu System, Page 44

Location on the page: 
Implementation of hook_menu()
Error: 

function mymodule_menu()

Correction: 

return $items;

Description of the Error: 

should the function return $items?

[Yes! The final line of mymodule_menu() was omitted, and should be return $items; -JV]