Fixed pages route. Thanks @tomcode.
diff --git a/user_guide/tutorial/static_pages.html b/user_guide/tutorial/static_pages.html
index 51a04c6..26c8306 100644
--- a/user_guide/tutorial/static_pages.html
+++ b/user_guide/tutorial/static_pages.html
@@ -171,7 +171,7 @@
 <p>Let's do that. Open the routing file located at <dfn>application/config/routes.php</dfn> and add the following two lines. Remove all other code that sets any element in the <var>$route</var> array.</p>
 	
 <pre>
-$route['default_controller'] = 'pages';
+$route['default_controller'] = 'pages/view';
 $route['(:any)'] = 'pages/view/$1';
 </pre>