diff --git a/browscap.module b/browscap.module
index 726dc8c..37ce758 100644
--- a/browscap.module
+++ b/browscap.module
@@ -5,7 +5,7 @@
  */
 
 // Include browscap data import and user agent recording functions
-include_once('import.inc');
+include_once 'import.inc';
 
 /**
  * Implements hook_permission().
@@ -71,7 +71,9 @@ function browscap_cron() {
  * Provide data about a user agent string or the current user agent.
  *
  * @param string $user_agent
- *   Optional user agent string to test. If empty, use the value from the current request.
+ *   Optional user agent string to test. If empty, use the value from the
+ *   current request.
+ *
  * @return array
  *   An array of information about the user agent.
  */
diff --git a/import.inc b/import.inc
index 3bdb8d0..5510559 100644
--- a/import.inc
+++ b/import.inc
@@ -7,8 +7,9 @@
 /**
  * Helper function to update the browscap data.
  *
- * @param boolean $cron
- *   Optional import environment. If false, display status messages to the user in addition to logging information with the watchdog.
+ * @param bool $cron
+ *   Optional import environment. If false, display status messages to the user
+ *   in addition to logging information with the watchdog.
  */
 function _browscap_import($cron = TRUE) {
   // Check the local browscap data version number
@@ -22,7 +23,7 @@ function _browscap_import($cron = TRUE) {
     // Log a message with the watchdog
     watchdog('browscap', "Couldn't check version: %error", array('%error' => $current_version->error), WATCHDOG_ERROR);
 
-    // Display a message to the user if the update process was triggered manually
+    // Display a message to user if the update process was triggered manually
     if ($cron == FALSE) {
       drupal_set_message(t("Couldn't check version: %error", array('%error' => $current_version->error)), 'error');
     }
@@ -39,7 +40,7 @@ function _browscap_import($cron = TRUE) {
     // Log a message with the watchdog
     watchdog('browscap', 'No new version of browscap to import');
 
-    // Display a message to the user if the update process was triggered manually
+    // Display a message to user if the update process was triggered manually
     if ($cron == FALSE) {
       drupal_set_message(t('No new version of browscap to import'));
     }
@@ -55,7 +56,7 @@ function _browscap_import($cron = TRUE) {
     // Log a message with the watchdog
     watchdog('browscap', "Couldn't retrieve updated browscap: %error", array('%error' => $browscap_data->error), WATCHDOG_ERROR);
 
-    // Display a message to the user if the update process was triggered manually
+    // Display a message to user if the update process was triggered manually
     if ($cron == FALSE) {
       drupal_set_message(t("Couldn't retrieve updated browscap: %error", array('%error' => $browscap_data->error)), 'error');
     }
@@ -135,7 +136,7 @@ function _browscap_import($cron = TRUE) {
       db_insert('browscap')
         ->fields(array(
          'useragent' => $user_agent,
-         'data' => serialize($e)
+         'data' => serialize($e),
         ))
         ->execute();
     }
@@ -149,7 +150,7 @@ function _browscap_import($cron = TRUE) {
     // Log a message with the watchdog
     watchdog('browscap', 'New version of browscap imported: %version', array('%version' => $current_version));
 
-    // Display a message to the user if the update process was triggered manually
+    // Display a message to user if the update process was triggered manually
     if ($cron == FALSE) {
       drupal_set_message(t('New version of browscap imported: %version', array('%version' => $current_version)));
     }
