Index: README.txt
IDEA additional info:
Subsystem: com.intellij.openapi.diff.impl.patch.CharsetEP
<+>UTF-8
===================================================================
--- README.txt	(revision e7b1e07be9225999f49e67a7f393ed52ea964ea7)
+++ README.txt	(revision )
@@ -6,41 +6,50 @@
 Drupal Core: 7.x
 
 CONTENTS OF THIS FILE
-=====================
+---------------------
 
 * Introduction
 * Installation
+* Dependencies
 
 Introduction
-============
+------------
 
 Current Maintainer: Joseph Z (joseph@gotouch.com.au)
 
 This module is a small utility tool.
 
-It can help you rebuild the image(s) information in the image field
-within certain content type.
+It can help you rebuild the image(s) information stored in the image field
+within certain content types.
 
 The two common cases are:
 
-1. You replace the image(s) manually in server
-such as cover.jpg from the small size to large size.
-2. You update the image(s) name or path in database
-and replace the files manually
-such as from public://publication/1.jpg to public://article/01.jpg
+1. Image(s) were replaced manually on the server, such as cover.jpg from a small
+   size to a larger size.
+2. Image(s) name(s) or path(s) were updated in the database and were replaced
+   manually on the server.
+   For example, from public://publication/1.jpg to public://article/01.jpg
 
-In particular the {file_managed.filesize} and the {file_managed.timestamp}
-columns will be incorrect.
-And the image dimension in field_data_filename table will be incorrect as well.
+In particular, the {file_managed.filesize} and the {file_managed.timestamp}
+columns will be incorrect after making these changes and the image dimension
+in the field_data_filename table will be incorrect as well.
 
-This module can rebuild such information, then update them in database.
+This module will rebuild said information and then update them in database.
 
-
 Installation
-============
+------------
 
-The Utility Image Rebuild module 
-is dependent on two Drupal 7 core modules: file, image
+Installation is quite simple:
 
-Installation is quite simple,
-Enable the module or you can use Drush: drush pm-enable utility_image_rebuild.
+Enable the module from admin/modules or use Drush:
+
+drush pm-enable utility_image_rebuild
+
+Dependencies
+------------
+
+The Utility Image Rebuild module is dependent on two Drupal 7 core modules:
+file
+image
+
+You will be prompted to enable these modules if they are not already enabled.
\ No newline at end of file
Index: utility_image_rebuild.module
IDEA additional info:
Subsystem: com.intellij.openapi.diff.impl.patch.CharsetEP
<+>UTF-8
===================================================================
--- utility_image_rebuild.module	(revision e7b1e07be9225999f49e67a7f393ed52ea964ea7)
+++ utility_image_rebuild.module	(revision )
@@ -16,12 +16,12 @@
   $form['utility_image_rebuild'] = array(
     '#type' => 'fieldset',
     '#title' => t('Utility Tool - Image Rebuild'),
-    '#description' => t('Rebuild the image information in image field then update the values into database.'),
+    '#description' => t('Rebuild the image information in image field, then update the values in the database.'),
   );
   $form['utility_image_rebuild']['utility_image_rebuild_run'] = array(
     '#type' => 'submit',
     '#value' => t('Run the Image Rebuild'),
-    '#suffix' => '<span class="description">' . t('Could take time and could put an increased load on your server.') . '</span>',
+    '#suffix' => '<span class="description">' . t('This could take time and might put an increased load on your server.') . '</span>',
   );
   $form['#submit'][] = '_utility_image_rebuild_form_submit';
 }
Index: utility_image_rebuild.info
IDEA additional info:
Subsystem: com.intellij.openapi.diff.impl.patch.CharsetEP
<+>UTF-8
===================================================================
--- utility_image_rebuild.info	(revision e7b1e07be9225999f49e67a7f393ed52ea964ea7)
+++ utility_image_rebuild.info	(revision )
@@ -1,5 +1,6 @@
 name = Utility Image Rebuild
-description = Rebuild the image information.
+description = A small utility tool to help you rebuild information stored in the
+              database image(s) columns.
 core = 7.x
 package = Utility
 dependencies[] = file
