diff --git a/views.api.php b/views.api.php
index 1e2b9db..5358f20 100644
--- a/views.api.php
+++ b/views.api.php
@@ -469,6 +469,9 @@ function hook_views_data() {
  * returned by MODULENAME_views_api(), or the same directory as the .module
  * file, if 'path' is unspecified.
  *
+ * @param $data
+ *   An array of all Views data, passed by reference.
+ *
  * @see hook_views_data().
  */
 function hook_views_data_alter(&$data) {
@@ -487,7 +490,7 @@ function hook_views_data_alter(&$data) {
   // the node title.
 
   $data['node']['title']['handler'] = 'modulename_handlers_field_node_title';
-  
+
   // Note that the $data array is not returned – it is modified by reference.
 }
 
