diff --git a/uniqueness.module b/uniqueness.module
index ed601e0..9adc0b4 100644
--- a/uniqueness.module
+++ b/uniqueness.module
@@ -59,21 +59,26 @@ function uniqueness_permission() {
  * Implements hook_help().
  */
 function uniqueness_help($path, $arg) {
+  $output =  '<p>' . t('The Uniqueness module helps you avoid duplicate content on your site by informing users of similar or related content as they create <em>new</em> content.') . '</p>';
   switch ($path) {
     case 'admin/config/content/uniqueness':
-      $output = '<p>' . t('Uniqueness module provides a way to avoid duplicate content on your site by informing a user about similar or related content during creation of a new post.') . '</p>';
       return $output;
     case 'admin/help#uniqueness':
-      $output = '<p>' . t('Uniqueness module provides a way to avoid duplicate content on your site by informing a user about similar or related content during creation of a new post.') . '</p>';
-      $output .= '<p>' . t('A UI widget is added to the node adding and/or editing form which performs asynchronous searches on input fields (like the node title or vocabularies) and returns a list of similar content.') . '</p>';
-      $output .= '<p>' . t('This widget needs to be enabled separately for each content type on the configuration page for each <a href="@content-types-page">content type</a>. Configuration options (appearance, search modes) are available on the <a href="@uniqueness-settings-page">uniqueness settings page</a>.', array('@content-types-page' => url('admin/structure/types'), '@uniqueness-settings-page' => url('admin/config/content/uniqueness'))) . '</p>';
+      $output .= '<p>' . t('A block and/or in-line user interface element is added to the content adding and/or editing form.') . ' ' .
+                         t('As the user types, Uniqueness searches on the title or vocabularies fields and displays a list of similar content.') . ' ' .
+                         t('To configure overall options such as search and appearance, visit the <a href="@uniqueness-settings-page">uniqueness settings</a> page. To use the in-line user interface element, enable it on each desired <a href="@content-types-page">content type</a> configuration page.',
+                           array('@content-types-page' => url('admin/structure/types'), '@uniqueness-settings-page' => url('admin/config/content/uniqueness'))) . '</p>';
       $output .= '<h3>' . t('Search modes') . '</h3>';
-      $output .= '<p>' . t('The module supports three different search modes:') . '</p>';
-      $output .= '<ul>';
-      $output .= '<li>' . t('Simple node title search (default): tries to match the title of a new node by comparing the new title with the title of existing nodes.') . '</li>';
-      $output .= '<li>' . t('Drupal search: tries to find similar nodes by searching for nodes using the standard search module. Requires the (core) search module to be enabled!') . '</li>';
-      $output .= '<li>' . t('Apache Solr search: tries to find similar nodes using the <a href="@apachesolr-project">Apache Solr</a> module which is required to be installed, configured and enabled.', array('@apachesolr-project' => url('http://drupal.org/project/apachesolr'))) . '</li>';
-      $output .= '</ul>';
+      $output .= '<p>' . t('The module can find related content using one of three possible methods:') . '</p>';
+      $output .= '<dl>';
+      $output .= '<dt>' . t('Simple node title search (default)') . '</dt>' .
+                    '<dd>' . t('Matches the title of a new node by comparing the new title with the title of existing nodes.') . '</dd>';
+      $output .= '<dt>' . t('Drupal search') . '</dt>' .
+                    '<dd>' . t('Searches for content using the standard search module. Requires the core search module to be enabled.') . '</dd>';
+      $output .= '<dt>' . t('Apache Solr search') . '</dt>' .
+                    '<dd>' . t('Searches using the <a href="@apachesolr-project">Apache Solr</a> module. Apache Solr must be to be installed, enabled and configured.',
+                            array('@apachesolr-project' => url('http://drupal.org/project/apachesolr'))) . '</dd>';
+      $output .= '</dl>';
       return $output;
   }
 }
