diff --git a/no_autocomplete.module b/no_autocomplete.module
index 0659668..b777d7c 100644
--- a/no_autocomplete.module
+++ b/no_autocomplete.module
@@ -1,12 +1,8 @@
 <?php
 /**
  * @file
- * no_autocomplete.module
+ * No_autocomplete.module.
  *
- */
-
-
-/**
  * This module adds the autocomplete=off attribute to selected key user forms.
  * On a browser that respects this setting, it means that the browser will not
  * try to autocomplete the password on the user login forms, or the whole
@@ -19,13 +15,10 @@
  *    form and not the second, making them angry and confused.
  */
 
-
 /**
  * Implements hook_menu().
  *
  * Add admin settings form.
- *
- * @return mixed
  */
 function no_autocomplete_menu() {
   $items['admin/settings/no_autocomplete'] = array(
@@ -44,10 +37,6 @@ function no_autocomplete_menu() {
  * Implements hook_form_alter().
  *
  * Turn off autocomplete on key forms.
- *
- * @param $form
- * @param $form_state
- * @param $form_id
  */
 function no_autocomplete_form_alter(&$form, $form_state, $form_id) {
   // Add to the user_login and user_profile_form.
