diff --git a/session_api.install b/session_api.install
index 89bf73e..4759a39 100644
--- a/session_api.install
+++ b/session_api.install
@@ -2,11 +2,11 @@
 
 
 /**
- * Implement hook_schema().
+ * Implements hook_schema().
  */
 function session_api_schema() {
   $schema['session_api'] = array(
-    'description' => t('Map Session API IDs to the {sessions} sid field.'),
+    'description' => 'Map Session API IDs to the {sessions} sid field.',
     'fields' => array(
       'sid' => array(
         'type' => 'serial',
@@ -47,7 +47,7 @@ function session_api_update_6100() {
 }
 
 /**
- * Implementation of hook_update_N().
+ * Implements hook_update_N().
  *
  * Adds timestamp field.
  */
diff --git a/session_api.module b/session_api.module
index 2d3782f..e642530 100644
--- a/session_api.module
+++ b/session_api.module
@@ -51,12 +51,12 @@ function session_api_get_sid($create = TRUE) {
       $session_id = $_COOKIE['session_api_session'];
       $sid = db_query("SELECT sid FROM {session_api} WHERE session_id = :session_id", array(':session_id' => $session_id))->fetchField();
     }
-    // If the caller doesn't want to create a new session if it didn't exist, 
+    // If the caller doesn't want to create a new session if it didn't exist,
     // then return here.
-    else if (!$create) {
+    elseif (!$create) {
       // Return a negative value here, since it won't collide with any
       // session_api IDs.
-    	return -1;
+      return -1;
     }
     else {
       $session_id = md5(ip_address() . REQUEST_TIME . drupal_get_private_key());
@@ -89,12 +89,12 @@ function session_api_get_sid($create = TRUE) {
 }
 
 /**
- * Implement hook_menu().
+ * Implements hook_menu().
  */
 function session_api_menu() {
   $items['admin/config/development/session-api'] = array(
-    'title' => t('Session API Configuration'),
-    'description' => t('Configure Session API behavior.'),
+    'title' => 'Session API Configuration',
+    'description' => 'Configure Session API behavior.',
     'access arguments' => array('administer site configuration'),
     'page callback' => 'drupal_get_form',
     'page arguments' => array('session_api_settings_form'),
@@ -105,7 +105,7 @@ function session_api_menu() {
 }
 
 /**
- * Implement hook_cron().
+ * Implements hook_cron().
  */
 function session_api_cron() {
   // Fetch list of outdated sids.
