diff --git a/hidden_captcha.install b/hidden_captcha.install
index 11e3c35..49744b4 100644
--- a/hidden_captcha.install
+++ b/hidden_captcha.install
@@ -1,10 +1,13 @@
 <?php
-// $Id: hidden_captcha.install,v 1.1.2.1 2010/06/29 05:55:33 alexiswilke Exp $
+/**
+ * @file
+ * Install, update, and uninstall functions for the Hidden CAPTCHA module.
+ */
 
 /**
- * Implementation of hook_uninstall().
+ * Implements hook_uninstall().
  *
- * On uninstall: remove module variables and clear variable cache
+ * On uninstall: Remove module variables and clear variable cache.
  */
 function hidden_captcha_uninstall() {
   db_query("DELETE FROM {variable} WHERE name LIKE 'hidden_captcha_%%'");
diff --git a/hidden_captcha.module b/hidden_captcha.module
index 5eac701..3e5efa6 100644
--- a/hidden_captcha.module
+++ b/hidden_captcha.module
@@ -1,17 +1,21 @@
 <?php
+/**
+ * @file
+ * All code for the Foo Bar module, except installation-related code.
+ */
 
 /**
- * Implementation of hook_help().
+ * Implements hook_help().
  */
 function hidden_captcha_help($path, $arg) {
   switch ($path) {
     case 'admin/config/people/captcha/hidden_captcha':
-      return '<p>'. t('This CAPTCHA presents a text field that we expect no one to fill. The text field can be given any name and will be hidden from view using CSS.') .'</p>';
+      return '<p>' . t('This CAPTCHA presents a text field that we expect no one to fill. The text field can be given any name and will be hidden from view using CSS.') . '</p>';
   }
 }
 
 /**
- * Implementation of hook_menu().
+ * Implements hook_menu().
  */
 function hidden_captcha_menu() {
   $items = array();
@@ -35,9 +39,9 @@ function hidden_captcha_settings_form() {
     '#type' => 'textfield',
     '#title' => t('Hidden text field label'),
     '#description' => t(
-      "This is the hidden captcha form field's label, describing the expected input.<br />".
-      "<strong>It is highly recommended to change it!</strong><br />".
-      "The label should be as \"machine-readable\" as possible, encouraging spambots to fill in the field. An example might be a simple math challenge.<br />".
+      "This is the hidden captcha form field's label, describing the expected input.<br />" .
+      "<strong>It is highly recommended to change it!</strong><br />" .
+      "The label should be as \"machine-readable\" as possible, encouraging spambots to fill in the field. An example might be a simple math challenge.<br />" .
       "The label will only be visible to people who do not have CSS enabled and to robots."
     ),
     '#default_value' => variable_get('hidden_captcha_label', 'Website URL'),
@@ -46,7 +50,7 @@ function hidden_captcha_settings_form() {
 }
 
 /**
- * Implementation of hook_captcha().
+ * Implements hook_captcha().
  */
 function hidden_captcha_captcha($op, $captcha_type = '') {
   switch ($op) {
@@ -59,7 +63,7 @@ function hidden_captcha_captcha($op, $captcha_type = '') {
           '#type' => 'textfield',
           '#title' => variable_get('hidden_captcha_label', 'Website URL'),
           '#required' => FALSE,
-	  '#attributes' => array('tabindex' => '-1'),
+          '#attributes' => array('tabindex' => '-1'),
         );
         return $captcha;
       }
@@ -68,7 +72,7 @@ function hidden_captcha_captcha($op, $captcha_type = '') {
 }
 
 /**
- * Implementation of hook_theme().
+ * Implements hook_theme().
  */
 function hidden_captcha_theme() {
   return array(
@@ -80,7 +84,7 @@ function hidden_captcha_theme() {
 }
 
 /**
- * Implementation of theme_hook().
+ * Implements theme_hook().
  */
 function theme_hidden_captcha_captcha($element) {
   $captcha = theme_captcha($element);
@@ -90,7 +94,7 @@ function theme_hidden_captcha_captcha($element) {
     $class = "";
     for ($i = 0; $i < 64; ++$i) $class .= substr($chars, rand(0, strlen($chars)-1), 1);
     //hide the random class via css
-    drupal_add_css(".$class{width:0;height:0;overflow:hidden;}","inline"); // TODO: move the random class to an external file
+    drupal_add_css(".$class{width:0;height:0;overflow:hidden;}", "inline"); // TODO: move the random class to an external file
     //html for the captcha
     $captcha = "<div class=\"$class\">" . $captcha . "</div>";
   }
