diff --git a/imageinfo_cache.admin.inc b/imageinfo_cache.admin.inc
index 30affaa..39902ce 100644
--- a/imageinfo_cache.admin.inc
+++ b/imageinfo_cache.admin.inc
@@ -19,7 +19,7 @@ function imageinfo_cache_admin_settings_form($form, $form_state) {
   $form['pre_generation'] = array(
     '#type' => 'fieldset',
     '#title' => t('Pre Generation of Image Styles'),
-    '#description' => t('Styles that end with a * are ones where found by default for that field.')
+    '#description' => t('Styles that end with * are enabled by default as they are being used for that field.')
   );
 
   // Get image styles.
diff --git a/imageinfo_cache.drush.inc b/imageinfo_cache.drush.inc
index 9706ec7..1039cfa 100644
--- a/imageinfo_cache.drush.inc
+++ b/imageinfo_cache.drush.inc
@@ -8,7 +8,7 @@
  */
 
 /**
- * Implementation of hook_drush_command().
+ * Implements hook_drush_command().
  */
 function imageinfo_cache_drush_command() {
   $items['image-generate'] = array(
@@ -176,19 +176,19 @@ if (!class_exists('ApachesolrAttachmentsEntityFieldQuery') && class_exists('Enti
     private $addedFields = array();
 
     /**
-    * Finishes the query.
-    *
-    * Adds tags, metaData, range and returns the requested list or count.
-    *
-    * @param SelectQuery $select_query
-    *   A SelectQuery which has entity_type, entity_id, revision_id and bundle
-    *   fields added.
-    * @param $id_key
-    *   Which field's values to use as the returned array keys.
-    *
-    * @return
-    *   See EntityFieldQuery::execute().
-    */
+     * Finishes the query.
+     *
+     * Adds tags, metaData, range and returns the requested list or count.
+     *
+     * @param SelectQuery $select_query
+     *   A SelectQuery which has entity_type, entity_id, revision_id and bundle
+     *   fields added.
+     * @param $id_key
+     *   Which field's values to use as the returned array keys.
+     *
+     * @return
+     *   See EntityFieldQuery::execute().
+     */
     function finishQuery($select_query, $id_key = 'entity_id') {
       foreach ($this->tags as $tag) {
         $select_query->addTag($tag);
@@ -205,7 +205,7 @@ if (!class_exists('ApachesolrAttachmentsEntityFieldQuery') && class_exists('Enti
       }
       $return = array();
 
-      foreach($this->addedFields as $addedField) {
+      foreach ($this->addedFields as $addedField) {
         $fields = $select_query->getFields();
         if (!empty($addedField['field_name'])) {
           $column = $addedField['field_name'] . '_' . $addedField['column'];
@@ -230,6 +230,7 @@ if (!class_exists('ApachesolrAttachmentsEntityFieldQuery') && class_exists('Enti
       }
       return $return;
     }
+
     public function addExtraField($field_name, $column, $column_alias = NULL) {
       $this->addedFields[] = array(
         'field_name' => $field_name,
diff --git a/imageinfo_cache.info b/imageinfo_cache.info
index 4451f98..7bd7e7c 100644
--- a/imageinfo_cache.info
+++ b/imageinfo_cache.info
@@ -4,3 +4,4 @@ description = Generate imagecache presets in the background.
 package = Performance and scalability
 dependencies[] = image
 core = 7.x
+configure = admin/config/media/imageinfo_cache
