Index: modules/help/help.module
===================================================================
RCS file: /cvs/drupal/drupal/modules/help/help.module,v
retrieving revision 1.91
diff -u -p -r1.91 help.module
--- modules/help/help.module	10 Sep 2009 06:32:54 -0000	1.91
+++ modules/help/help.module	25 Nov 2009 05:57:01 -0000
@@ -48,8 +48,15 @@ function help_help($path, $arg) {
       $output .= '<p>' . t('For more information, please refer to the specific topics listed in the next section, or the <a href="@handbook">online Drupal handbooks</a>. You may also post at the <a href="@forum">Drupal forum</a>, or view the wide range of <a href="@support">other support options</a> available.', array('@help' => url('admin/help'), '@handbook' => 'http://drupal.org/handbooks', '@forum' => 'http://drupal.org/forum', '@support' => 'http://drupal.org/support')) . '</p>';
       return $output;
     case 'admin/help#help':
-      $output = '<p>' . t('The help module provides context sensitive help on the use and configuration of <a href="@drupal">Drupal</a> and its modules, and is a supplement to the more extensive online <a href="@handbook">Drupal handbook</a>. The online handbook may contain more up-to-date information, is annotated with helpful user-contributed comments, and serves as the definitive reference point for all Drupal documentation.', array('@drupal' => 'http://drupal.org', '@handbook' => 'http://drupal.org/handbook')) . '</p>';
-      $output .= '<p>' . t('For more information, see the online handbook entry for <a href="@help">Help module</a>.', array('@help' => 'http://drupal.org/handbook/modules/help/')) . '</p>';
+       $output = '';
+       $output .= '<h3>' . t('About') . '</h3>';
+       $output .= '<p>' . t('The Help module provides context-sensitive advice about the use and configuration of modules. It is a starting point for the online <a href="@handbook">Drupal handbooks</a>. The handbooks contain more extensive and up-to-date information, are annotated with user-contributed comments, and serve as the definitive reference point for all Drupal documentation. For more information, see the online handbook entry for the <a href="@help">Help module</a>.', array('@help' => 'http://drupal.org/handbook/modules/help/', '@handbook' => 'http://drupal.org/handbook')) . '</p>';
+       $output .= '<h3>' . t('Uses') . '</h3>';
+       $output .= '<dl>';
+       $output .= '<dt>' . t('Context-sensitive help') . '</dt>';
+       $output .= '<dd>' . t('The Help module provides a brief explanation and examples of uses for each module listed on the <a href="@help">Help page</a>.', array('@help' => url('admin/help'))) . '</dd>';
++      $output .= '</dl>';
+
       return $output;
   }
 }
