diff --git a/entityreference_browser.js b/entityreference_browser.js
index 758a3f2..b0cb9af 100644
--- a/entityreference_browser.js
+++ b/entityreference_browser.js
@@ -61,7 +61,7 @@ jQuery(document).ready(function($) {
 
     var entityId = $(this).attr('data-id');
     var label = $(this).text();
-    
+
     // Add entity only one time.
     if(!$('li[data-id="' + entityId + '"]').length) {
       var entityItemRemove = $('<a />').attr('href', '/node/' + entityId).attr('class', 'remove').attr('data-id', entityId).html(' [remove] ');
@@ -71,7 +71,7 @@ jQuery(document).ready(function($) {
 
       entityreference_browser_update();
     }
-    
+
     return false;
   });
 
diff --git a/entityreference_browser.module b/entityreference_browser.module
index 241c9b6..85c3a9e 100644
--- a/entityreference_browser.module
+++ b/entityreference_browser.module
@@ -1,4 +1,8 @@
 <?php
+/**
+ * @file
+ * The main functionalities are located here.
+ */
 
 /**
  * Implements hook_views_api().
@@ -197,7 +201,7 @@ function entityreference_browser_field_widget_form(&$form, &$form_state, $field,
       ),
     ),
   );
-  
+
   // Note that the views ajax is getting manually placed here. This is to
   // overcome a bug that happeens when the normal views_add_js('ajax_view');
   // function is called. By using views_add_js the timing of the js files
@@ -213,7 +217,7 @@ function entityreference_browser_field_widget_form(&$form, &$form_state, $field,
 
   $selected_entities = entity_load($entity_type, $selected_entity_ids);
 
-  // Build HTML to represent selected items
+  // Build HTML to represent selected items.
   $markup_selected  = '<div class="entityreference-browser-widget-left"><ul data-ec="' . $ec . '" class="entityreference-browser entityreference-browser-selected">';
   foreach ($selected_entities as $id => $loaded_entity) {
     $remove_item_link = ' <a href="/node/' . $id . '" class="remove" data-id="' . $id . '">[remove]</a>';
diff --git a/views/entityreference_browser.views.inc b/views/entityreference_browser.views.inc
index 3cff2e3..2b65b26 100644
--- a/views/entityreference_browser.views.inc
+++ b/views/entityreference_browser.views.inc
@@ -1,4 +1,8 @@
 <?php
+/**
+ * @file
+ * Alters the table structure.
+ */
 
 /**
  * Implements hook_views_data_alter().
diff --git a/views/entityreference_browser.views_default.inc b/views/entityreference_browser.views_default.inc
index b8491ca..6b5141c 100644
--- a/views/entityreference_browser.views_default.inc
+++ b/views/entityreference_browser.views_default.inc
@@ -1,7 +1,7 @@
 <?php
 /**
  * @file
- * nova_magnet.views_default.inc
+ * Provides the default entity reference browser view.
  */
 
 /**
diff --git a/views/entityreference_browser_field_picker.inc b/views/entityreference_browser_field_picker.inc
index c66b209..59912db 100644
--- a/views/entityreference_browser_field_picker.inc
+++ b/views/entityreference_browser_field_picker.inc
@@ -1,4 +1,8 @@
 <?php
+/**
+ * @file
+ * Contains the views field handler.
+ */
 
 /**
  * Field handler used in the Browser View. It creates a selectable link.
@@ -20,4 +24,4 @@ class entityreference_browser_field_picker extends views_handler_field {
   function render($values) {
     return "<a data-id=\"{$values->nid}\" href=\"/node/{$values->nid}\" class=\"picker\">{$values->node_title}</a>";
   }
-}
\ No newline at end of file
+}
