diff --git a/core/modules/views/views.api.php b/core/modules/views/views.api.php
index e78322e..e8e6ce1 100644
--- a/core/modules/views/views.api.php
+++ b/core/modules/views/views.api.php
@@ -294,13 +294,15 @@ function hook_views_data_alter(array &$data) {
   $data['users']['example_field'] = array(
     'title' => t('Example field'),
     'help' => t('Some example content that references a user'),
-    'handler' => 'hook_handlers_field_example_field',
+    'field' => array(
+  	  'handler' => 'modulename_handler_field_example_field',
+  	),
   );
 
   // This example changes the handler of the node title field.
   // In this handler you could do stuff, like preview of the node when clicking
   // the node title.
-  $data['node']['title']['handler'] = 'modulename_handlers_field_node_title';
+  $data['node']['title']['field']['handler'] = 'modulename_handler_field_node_title';
 
   // This example adds a relationship to table {foo}, so that 'foo' views can
   // add this table using a relationship. Because we don't want to write over
